【SQL-JOIN】

Persons表:

引用两个表:

select Persons.LastName,Person.FirstName,Orders.OrderNo from Persons, Orders

where Persons.Id_P=Orders.Id_P

原文地址:https://www.cnblogs.com/bashaowei/p/9207028.html