跨多个表查询数据

时间:2016-02-16 18:12:29

标签: mysql sql

Table Structure

如何编写查询以查找名为“Bill”的客户的汽车退货日期?

1 个答案:

答案 0 :(得分:0)

您可以执行以下操作:

SELECT
    RentalReturnDate
FROM
    rentals
JOIN customers ON rentals.CustomerId = customers.CustomerId
WHERE
    customers.CustomerName = "Bill"

如果Bill只是名称的第一部分,您可以使用%作为通配符,并将WHERE子句更改为WHERE customers.CustomerName like 'Bill%'

我建议您阅读一些教程(like this one)以了解有关查询和加入的更多信息