问题如图:
当前的想法是 分别对这四个字段 标识为1,然后在where 条件中做判断,正常的判断 A+B+C+D>=2即可,但是有一个特殊的情况,A字段中的a1可以和B字段中的b2可以同时存在,难点是,怎么让结果,过滤掉A字段中的a1可以和B字段中的b2可以同时存在,又能算出其余只要出现两项就展示出来,不想要那种一个一个判断的代码
没有看明白。。。数据库里面截图说一下是如何的,最终要如何
纯sql的话,用case when A is not null and B is not null then C else '' end as C,
case when A is not null and B is not null then D else '' end as D
但是感觉大概率在前台处理,得用条件属性,类似的判定逻辑