Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Subquery going wrong

    Why using left join? Do it more simple:

    SELECT *

    FROM dbo.xComp d

    where not exists(

    select * from dbo.xTask

    where rowid=d.taskid)

Viewing post 1 (of 1 total)