请帮我写一个sql用来查询一个order_item_his表里面的create_date时间在2023-04-30以前的所有订单号cust_order_id
SELECT DISTINCT cust_order_id FROM order_item_his WHERE create_date < '2023-05-01';
原文地址: https://www.cveoy.top/t/topic/dJsm 著作权归作者所有。请勿转载和采集!
安全问答是一个知识全球问答,包含丰富的问答知识
SELECT DISTINCT cust_order_id FROM order_item_his WHERE create_date < '2023-05-01';
原文地址: https://www.cveoy.top/t/topic/dJsm 著作权归作者所有。请勿转载和采集!