sqlで取得値を刻む方法はありますか?
例えばcostが0-300, 300-600, 600-900というようなレンジを3000まで設定したいです。
case when cost >= 0 and cost <300 then "0-300" when cost >= 300 and cost <600 then "300-600" when cost >= 600 and cost <900 then "600-900" ...
とするのではなく変数のようなものでforやwhileで回しながら代入できませんでしょうか?
回答3件
あなたの回答
tips
プレビュー