次のようなテーブルを取得しました。
art. type price
a b 1
a c 2
フィルタリングされたコンテンツを次のように表示するために選択することは可能でしょうか:
art. type price
a b
a c 2
タイプが「b」の場合、価格データは表示されませんか?
select art, type, price from x
where type="b" hide price