转换成多列字段,,,不要用单元格过滤,不然神仙来了也优化不了,你必须要借用数据库的性能去展示了
类似如下,把列字段放在单元格,这样就不用单元格过滤了!!
--------------------------
select
case when aa='1' then bb else null end as 字段1,
case when aa='2' then bb+3 else null end as 字段2,
case when aa='3' then bb+ct else null end as 字段3
from 表名称