Where EXISTS

suggest change

Will select records in TableName that have records matching in TableName1.

SELECT * FROM TableName t WHERE EXISTS (
    SELECT 1 FROM TableName1 t1 where t.Id = t1.Id)

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Filter results using WHERE and HAVING:
*Where EXISTS

Table Of Contents