Viewing 2 posts - 1 through 2 (of 2 total)
For more current ANSI syntax, you might try rewriting the first query as follows:
SELECT so_title, count(*) as cnt
--Notice the new join syntax below
FROM songs JOIN setlist ON so_soid = sl_soid...
December 30, 2003 at 9:41 am
#488212
Looking into this was very helpful for me. Coming to SQL Server from other platforms, I had assumed Null + ‘string’ = empty_string + ‘string’ = ‘string’. ...
December 30, 2003 at 8:54 am
#488201