SELECT a.* FROM schema.table1 a LEFT JOIN ( SELECT a* FROM schema.table1 a JOIN schema.table2 b ON a.col1 = b.col1 WHERE a.col1= <[Parameters].[Parameter 2]> AND b.col1>= 3 UNION SELECT a* FROM schema.table3 a JOIN schema.table4 b ON a.col1 = b.col1 WHERE a.col1= <[Parameters].[Parameter 2]> AND b.col1>= 3 ) comp ON a.col1= comp.col1
from this I want to extract schema.table1,schema.table2,schema.table3,schema.table4 what would be my query
2.1m questions
2.1m answers
60 comments
57.0k users