Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: upgrading from Access to TSQL

    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...


    -Greg

  • RE: Only put a period "." if there is a middle intial.

    Looking into this was very helpful for me. Coming to SQL Server from other platforms, I had assumed Null + ‘string’ = empty_string + ‘string’ = ‘string’. ...


    -Greg

Viewing 2 posts - 1 through 2 (of 2 total)