mysql での if() 関数の使用法は次のようになります。 Java の 3 つ 目的式には多くの用途があります。具体的な構文は次のとおりです:
IF(expr1,expr2,expr3)、expr1 の値が true の場合、expr2 の値が返されます。 expr1 の値が false の場合、expr3 の値を返します
create or replace function if(bln boolean,inValue1 anyelement,inValue2 anyelement) returns anyelement as $$ begin if bln=true then return inValue1; else return inValue2; end if; end; $$ language plpgsql; create or replace function if(bln boolean,inValue1 numeric,inValue2 numeric) returns numeric as $$ begin if bln=true then return inValue1; else return inValue2; end if; end; $$ language plpgsql; create or replace function if(bln boolean,inValue1 numeric,inValue2 text) returns text as $$ begin if bln=true then return inValue1; else return inValue2; end if; end; $$ language plpgsql;
1 . デュアル テーブル
Oracle 固有のテーブル、目的は完全な SQL ステートメント構造を制限することです
select (select * from table_name where age = 20) t from dual
mysql と pgsql にはこのテーブルがありません。直接削除できます
select (select * from table_name where age = 20) t
2. ブール型
oracleとmysqlにはブール型がないため、代わりにnumber (int)またはcharを使用できます
pgsql は bool 型で、数値と文字は自動的に boolean 型 (0→f、1→t、no→f、yes→t)に変換されます
3. テーブルのエイリアスを更新します
pgsql は適用されず、mysql と oracle でサポートされます
update table_name t set t.name = 'abc' where id = 1
4. 文字列値の受け渡し
pgsql と oracle は一重引用符のみをサポートします
select * from table_name where name = 'abc'
mysql は一重引用符と二重引用符の両方をサポートします
select * from table_name where name = "abc"
5. バッチ挿入
mysql、pgsql バッチ挿入
insert into table_name() values()
oracle バッチ挿入
insert all into table_name() values()
if タグを使用して _databaseId を決定し、それぞれ異なるデータベースに適応します。具体的なコードは次のとおりです:
<insert id="insertBatch" parameterType="java.util.List"> <if test="_databaseId=='mysql' or _databaseId=='postgresql'"> insert into table_name (<include refid="insertBatchColumn"></include>) values <foreach collection="list" item="item" index="index" separator="," > (<include refid="insertBatchValue"></include>) </foreach> </if> <if test="_databaseId=='oracle'"> insert all <foreach collection="list" item="item" index="index" separator=""> into table_name (<include refid="insertBatchColumn"></include>) values (<include refid="insertBatchValue"></include>) </foreach> select * from dual </if> </insert> <sql id="insertBatchColumn"> id,name,age,gender </sql> <sql id="insertBatchValue"> #{item.id,jdbcType=VARCHAR}, #{item.name,jdbcType=VARCHAR}, #{item.age,jdbcType=INTEGER},#{item.gender,jdbcType=INTEGER} </sql>
以上がpostgresqlはMySQLのif関数とどのように互換性がありますかの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。