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.
SQL データベースに格納されているテーブルに 2 つの列があります。列 A と列 B の両方にブール値が含まれます。これらの 2 つの列の間の最大値のみを読み込むことは可能ですか。
IF A >=B THEN A ELIF B AS "MAX_Value" ?
SELECT case when A >= B Then A else B end as Max_value FROM yourTableName