mysql根据字段的值进行判断查询,比如:表中有a,b,c,d,e,f 这五个字段,其中c是int类型的 ,其他是string

2024-10-28 19:38:45
推荐回答(1个)
回答(1):

可以使用case when流程控制函数
例如:
select c,case c when 0 then concat(a,b) when 1 then concat(d,e)
when 2 then f else null end as result from tblName;