联表查询sql语句
der_no,customers.customer_name,products.product_name,orders.price 。
from orders。
inner join customers。
on orders.customer_id=customers.customer_id。
inner join products。
on orders.product_id=products.product_id。
where customers.customer_name='张三' 。
本语句是查询名为张三的客户购买了什么产品,以及该产品的价格,使用到了内连接查询,语句如下:
der_no,customers.customer_name,products.product_name,orders.price 。
from orders 。
inner join customers 。
on orders.customer_id=customers.customer_id 。
inner join products 。
on orders.product_id=products.product_id 。
where customers.customer_name='张三' 。
join on是什么连接其中orders表代表订单表,customers表代表客户表,products表代表产品表,查询的多个表使用到了内连接操作,最后通过Where进行过滤,把满足指定名字的客户的订单查询出来。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。