Viewing 4 posts - 1 through 4 (of 4 total)
use this syntax
insert into table_name
select * from tableA
except
select * from tableB
September 28, 2011 at 1:49 am
In T SQL
Select ISNULL(FirstName, 'xyz') from tableName where firstname is null..
In PLSQL you can replace the ISNULL with NVL i guess..
September 20, 2011 at 1:11 am
Do you need the sample data and the table structure? 🙂 That is what i see in the link posted by you. I will post it in a minute.
March 30, 2010 at 6:42 am
Sorry the question was not posted Correctly.
I need help with following requirement.
I want data to be generated in the following way in my stored procedure as given in the attachment.
Now...
March 30, 2010 at 6:17 am
Viewing 4 posts - 1 through 4 (of 4 total)