-2
SELECT ord_no,name, mobile, address, rate, mrp, create_date, edited_date,status
FROM orders o, customer c
where o.cust_id = c.id and status = 'CHECKED' order by 1;
我想這個條件添加到上述查詢添加在MySQL查詢一個條件
edited_date < DATE_SUB(now(), interval 48 hour)
我怎樣才能做到這一點?
應被視爲/? –
你的意思是edited_date shuold be equals「edited_date」? –
edited_date
user100613