I have to tables as: table1:
UID | COLLEGE_NAME | COLLEGE_ADDRESS
------------------------------------
table2:
UID | COMPANY_NAME | COMPANY_ADDRESS
------------------------------------
i have 2 queries:
select * from table1 where uid='$uid';
select * from table2 where uid='$uid';
i want to write this two queries in one procedure.