Skip to content

Latest commit

 

History

History
12 lines (12 loc) · 161 Bytes

minimal_subqueries.md

File metadata and controls

12 lines (12 loc) · 161 Bytes
with id_set as
(
select id 
     , name
     , address 
     , timestamp 
  from my_table 
 where (id not in some_other_table)
)
select * from id_set