hello all,
i am useing mysql
and i wonder how i can select all data from 3 diff tables and show it in one table
useing php
the primerry key in each table is the same
i want only to show full data of one row each time
and it will give me the data from all tables
hope i am being clear
thanks
i am useing mysql
and i wonder how i can select all data from 3 diff tables and show it in one table
useing php
the primerry key in each table is the same
Code:
select * from table1,table2,table3 gives me each table 3 times,
Code:
SELECT * FROM t1,t2,t3 WHERE t1.id = my_id
hope i am being clear
thanks
Comment