0
How can be Marg to table into a one table
there i have a tow table first sellar second id customer how can i join this both table into a one table
1 ответ
0
Use JOIN
SELECT * FROM Sellar JOIN Customer ON
Sellar.Customer.ID = Customer.ID
So you start with a standard select
use JOIN
name the second table
add ON
give the name of the column that connects the records, most of the time some sort of ID
http://www.dofactory.com/sql/join