postgresql怎么兼容MySQL if函数

postgresql怎么兼容MySQL if函数

postgresql兼容MySQL if函数

if函数说明

在mysql中if()函数的用法类似于java中的三目表达式,其用处也比较多,具体语法如下:

IF(expr1,expr2,expr3),如果expr1的值为true,则返回expr2的值,如果expr1的值为false,则返回expr3的值

postgresql自定义if函数兼容

create or replace function if(bln boolean,inValue1 anyelement,inValue2 anyelement)returns anyelement as$$beginif 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$$beginif 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$$beginif bln=true then return inValue1;else return inValue2;end if;end;$$language plpgsql;登录后复制

mysql、***、postgresql兼容适配

sql使用区别

1. dual表

***独有的表,目的是限制sql语句结构完整

select (select * from table_name where age = 20) t from dual登录后复制

mysql和pgsql没有这张表,可以直接去掉

select (select * from table_name where age = 20) t登录后复制

2. 布尔类型

***和mysql没有boolean类型,可使用number(int)或char代替

pgsql中有bool类型,数字和字符自动转换为boolean类型(0→f、1→t、no→f、yes→t)

3. update表别名

pgsql不适用,mysql 和 ***支持

update table_name t set t.name = 'abc' where id = 1登录后复制

4. 字符串传值

pgsql 、*** 仅支持单引号

select * from table_name where name = 'abc'登录后复制

mysql 单引号/双引号都支持

select * from table_name where name = "abc"登录后复制

5. 批量插入

mysql、pgsql批量插入

insert into table_name() values()登录后复制

***批量插入

insert all into table_name() values()登录后复制

mybatis兼容不同 数据库

使用if标签判断_databaseId,分别适配不同的数据库,具体代码如下:

insert into table_name () values () insert all into table_name () values () select * from dual id,name,age,gender #{item.id,jdbcType=VARCHAR}, #{item.name,jdbcType=VARCHAR}, #{item.age,jdbcType=INTEGER},#{item.gender,jdbcType=INTEGER} 登录后复制

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。