Sorry if this question has no sense or if the question is badly written.. but I'm really curious.
See code below:
select field1 from table1 join field2 from table2 where table1.field == table2.field join field3 from table3 where table1.field == table3.field exists join table4 where table3.field == table4.field
I'm curious about if I can only apply the exists join to table3 and not affect the entire select statement? is that possible?
*This post is locked for comments