8 lines
204 B
SQL
8 lines
204 B
SQL
-- 预览:待回填 goods_info 的订单号(goods_info_id 为空)
|
||
SELECT DISTINCT order_id
|
||
FROM order_rows
|
||
WHERE goods_info_id IS NULL
|
||
AND order_id IS NOT NULL
|
||
ORDER BY order_time DESC
|
||
LIMIT 100;
|