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.
mysqlでは、「Select a.field1> a.field2 from a」のようなクエリを記述でき、0と1の結果セットを取得します。
oracleで同様のクエリを作成しようとしましたが、機能しません。oracleで同様の結果セットを取得するにはどうすればよいですか?
試す
Select CASE WHEN a.field1 > a.field2 THEN 1 ELSE 0 END from a