问题遇到的现象和发生背景
想知道这些客户第一次下单是在第几周
问题相关代码,请勿粘贴截图
运行结果及报错内容
我的解答思路和尝试过的方法
我想要达到的结果
如截图,在第一次下单的周数这里,客户A应该是返回WK3, 客户B返回WK2,请问使用SQL的话,有什么方法可以做到呢?
想知道这些客户第一次下单是在第几周
如截图,在第一次下单的周数这里,客户A应该是返回WK3, 客户B返回WK2,请问使用SQL的话,有什么方法可以做到呢?
select
customer_name
, case
when wk1 is not null then 'wk1'
when wk2 is not null then 'wk2'
when wk3 is not null then 'wk3'
when wk4 is not null then 'wk4'
when wk5 is not null then 'wk5'
when wk6 is not null then 'wk6'
when wk7 is not null then 'wk7'
end as type from table_name