SELECT p.FirstName,p.LastName,a.City,a.State FROM Person p left join Address a WHERE p.PersonId= a.AddressId
联表查询怎么能用where呢,是on啊