Do I have a wrong setting in the EG or query builder objects? Or does it internally not matter with SAS and the SQL performance? Why does querybuilder generate SQL code that makes the table joins into select columns from table1 t1, table2 t2, table3 t3, table4 t4, table5 t5 where (t1.id = t2.id and t1.id = t3.id and t1.id = t4.id and t1.id = t5.id); Instead of using select columns from table1 join table2 on table1.id = table2.id join table3 on table1.id = table3.id join table4 on table1.id = table4.id join table5 on table1.id = table5.id;
... View more