欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

postgresql 中的COALESCE()函数使用小技巧

程序员文章站 2022-06-28 07:50:59
场景:存在一个用户白名单表,提供了此用户的用户名和地区信息,判断此用户是否在此白名单表中。如:姓名 白名单地区张三 中国,美国则可使用如下语句:select id, user, area_lis...

场景:

存在一个用户白名单表,提供了此用户的用户名和地区信息,判断此用户是否在此白名单表中。

如:

姓名 白名单地区

张三 中国,美国

则可使用如下语句:

select
  id,
  user,
  area_list
from
  t_white_user
where
  user = #{ user,
  jdbctype = varchar }
and (
  coalesce (area_list, '') like concat (
    '%' ,#{ country,
    jdbctype = varchar }, '%'
  )
  or area_list is null
)
limit 1

技巧点分析:

1、coalesce函数说明:返回其参数中第一个非空表达式,这里使用即 area_list

2、白名单地区为多个国家以逗号分隔,则使用like concat的方式,能查询出某个国家是否被包含其中。

补充:postgresql - null和''的区别与判断以及coalesce函数

null和''的区别与判断

null是一种类型,''是空字符串,打个比方,''是你参加了考试且得了零分,而null则是你压根就没有参加考试。

如果要在sql中对两者进行判断,是有区别的:

//null只能和is或is not搭配,不能使用=、!=或者<>
select * from student where name is null;
select * from student where name is not null;
//''的判断可以使用=、!=或者<>
select * from student where name = '';
select * from student where name != '';
select * from student where name <> '';

使用coalesce函数

coalesce函数是返回参数中的第一个非null的值,它要求参数中至少有一个是非null的,如果参数都是null会报错。

select coalesce(null,null); //报错
select coalesce(null,null,now()::varchar,''); //结果会得到当前的时间
select coalesce(null,null,'',now()::varchar); //结果会得到''
//可以和其他函数配合来实现一些复杂点的功能:查询学生姓名,如果学生名字为null或''则显示“姓名为空”
select case when coalesce(name,'') = '' then '姓名为空' else name end from student;

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。

相关标签: postgresql COALESCE