select a.id,a.is_group_buy, case when a.is_group_buy='yes' then null else c.name end cilent_name from ( select id, is_group_buy, client_id, count(*) over(partition by user_id) cnt from order_info where status='completed' and date > '2025-10-15' and product_name in ('C++','Java','Python') ) a left...