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
2 Posted Topics
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 ( …
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 …
The End.
fx1250s