Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「table1」のようなテーブルがあります
NAME COL1 COL2 COL3 COL4 A 1 2 3 4
テーブルをフィルタリングしたい
"SELECT * FROM table1 where (COL1=1 OR COL2=1 OR COL3=1 OR COL4=1)"
私は結果が
NAME COL_NAME A COL1
それはSQL文で可能ですか?