テーブルには以下が含まれます:
c1 c2 c3 c4 c5
da1 Null Null db1 dc1
da1 dx1 Null db1 dc1
da1 Null dy1 db1 Null
すべてがvarchar
フィールドです。
null を含まず、1 行でデータを返すクエリが必要です " da1 dx1 dy1 db1 dc1
"
select 'da1', 'dx1', 'dt1', 'db1', 'dc1' from thattable limit 1
完全に動作するはずです
これを試して。
select * from (select distinct c1, c2, c3, c4, c5 from mytable) as mytab where c1 is not null and c2 is not null and c3 is not null and c4 is not null and c5 is not null