select distinct devicesbarcode from (
select checks.devicesbarcode,checks.checkday from cjCheck checks where checks.leftTimes ='QQDown'
union
select checks.devicesbarcode,checks.checkday from cjCheckers checks where checks.checkState ='LoadIng') tt
就这个 sql 要求查询到 除了 devicesbarcode 其他列的值(比如:checkday,但实际不只是一个checkday还有其他的,这里是例子。) 该如何写哟?
------解决方案--------------------
你的意思是每一列都不能重复??
------解决方案--------------------