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.
パイプ文字を挿入したい| 出力の2つのセクションを区切る列で。その行にデータがある限り、列のすべての行に1つ配置する方法はありますか?
select column1, column2, case when column3 is not null then '|' else '' end from your_table
すべての列で機能するものではありません。すべての列に対してそれを繰り返す必要があります。
このようなもの;
SELECT CASE col IS NULL THEN NULL ELSE CONCAT('|', col) END CASE FROM Table