Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~360 People Reached
Favorite Forums

2 Posted Topics

Member Avatar for ng38

select A.id, A.aDate from table1 A union select B.id, B.aDate from table2 B where B.id not in (select A.id from table1 A) -- Complete test code: drop table table1 drop table table2 go create table table1 ( id int PRIMARY KEY , adate datetime ) go create table table2 ( …

Member Avatar for eralper
0
138
Member Avatar for everhett.raman

Actually, the code seems to be behaving properly. Where is the error thrown? I don't see any code that would cause an error. The reason the first line in the TRY block prints and not the remaining lines is that, since no error occurred, all of the error functions return …

Member Avatar for fx1250s
0
222

The End.