i have two table. table1 and table2.each table is having three columns.
each table columnsname is different.i apply the query for table .i want one columns value for table1
and i want two columns value for table2.i want to write one query for each table and apply different condition for each table.but ,i want to result in only one query
i have two table. table1 and table2.each table is having three columns. each table
Share
use joins , it can be retrived
select table1.colname,table2.colname from table1, table2
where table2.colname=table2.colname.