如何编写查询以查找名为“Bill”的客户的汽车退货日期?
答案 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)以了解有关查询和加入的更多信息