注册 登录
编程论坛 SQL Server论坛

请问怎么解释这段代码

fuckamerica 发布于 2022-10-14 16:33, 837 次点击
SELECT a.shop_id, a.shop_name, b.order_id, c.order_date
FROM table_1 AS a
LEFT JOIN table_2 AS b ON a.shop_id = b.shop_id
LEFT JOIN table_3 AS c ON b.order_id = c.order_id
WHERE c.order_date >= '2018-07-01'::TIMESTAMP
0 回复
1