Left Anti Semi Join

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Andrey Krivda 232973226

    Left Anti Semi Join

    Hi!
    Whether there is an example where is used "Left Anti Semi Join"?

    andrey@tic.com. ua


  • Anith Sen

    #2
    Re: Left Anti Semi Join

    This is a internal logical operator which comes into play returns each row
    from the first table/view/query without a matching row in the second one.
    There is no explicit T-SQL equivalent that is applicable 'externally' in a
    SELECT statement.

    --
    - Anith
    ( Please reply to newsgroups only )


    Comment

    • otisblue
      New Member
      • May 2006
      • 1

      #3
      Originally posted by Anith Sen
      There is no explicit T-SQL equivalent that is applicable 'externally' in a
      SELECT statement.
      You're correct that it's an internal logical operation, so one can't be entirely sure when it will be used. But for practical purposes it generally occurs if and only if you use a NOT EXISTS correlated subquery (or correlated NOT IN).

      Comment

      Working...