table1
Id | Field1 | Field2
table2
Id | Field1 | Field2 | OtherField
tak aby otrzymac taka
Id | Field1 | Field2 | OtherField
rows...
jedyne co narazie udalo mi sie zrobic to:
SELECT * FROM table1 AS t1, table2 AS t2 WHERE (t1.ID = 1) OR (t2.ID = 1)
Id | Field1 | Field2 | Id | Field1 | Field2 | OtherField
rows...
czy jest wogole taka mozliwosc?