I was thinking is there a query that can select many table at once?. Not using a JOINS
. I tried to research about it but all I got is
SELECT * FROM Table WHERE ID IN (parameter1,parameter2);
I tried this kind of query
select * from Table Table1,Table2
but the result is getting from the Table1 only.
All tables are not it relation with each other so it means they are different table to each. What I am trying to do here is I will check the tables if there is a data on it or not. What I was using is query it all one-by-one
using
select * from Table
again and again. Hope this will explain it.