题解 | #判断其是否有过购买记录#
判断其是否有过购买记录
https://www.nowcoder.com/practice/5cddad8995974b0c915ab89961428ee0
select customer_id , if (latest_place_order_date is null, 0,1) as if_placed_order from customers_info
判断其是否有过购买记录
https://www.nowcoder.com/practice/5cddad8995974b0c915ab89961428ee0
select customer_id , if (latest_place_order_date is null, 0,1) as if_placed_order from customers_info
相关推荐