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、oracle、postgresql兼容适配
sql使用区别
1. dual表
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没有boolean类型,可使用number(int)或char代替
pgsql中有bool类型,数字和字符自动转换为boolean类型(0→f、1→t、no→f、yes→t)
3. update表别名
pgsql不适用,mysql 和 oracle支持
阿里云-虚拟数字人
阿里云-虚拟数字人是什么? …
2 查看详情
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()
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}
以上就是postgresql怎么兼容MySQL if函数的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/263321.html
微信扫一扫
支付宝扫一扫