select column1,column2,column3 from table1 where column5=0 and column6=0;
select column4 from table2 where column5=0 and column6=0;
These are two sql statements reading data from table1 & table2, is there a way instead of 2 single queries, can i write in a single query?
Thanks.