文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

postgresql怎么兼容MySQL if函数

2023-07-05 14:29

关注

这篇文章主要介绍“postgresql怎么兼容MySQL if函数”,在日常操作中,相信很多人在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、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支持

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 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函数”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯