这篇文章主要介绍了postgresql 中的COALESCE()函数使用小技巧,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
场景:
存在一个用户白名单表,提供了此用户的用户名和地区信息,判断此用户是否在此白名单表中。
如:
姓名 白名单地区
张三 中国,美国
则可使用如下语句:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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中对两者进行判断,是有区别的:
1 2 3 4 5 6 7 | // 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会报错。
1 2 3 4 5 | 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; |
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。