postgresql – 如何匹配not null not empty?

前端之家收集整理的这篇文章主要介绍了postgresql – 如何匹配not null not empty?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我必须对凌乱的数据库进行一些查询.某些列填充空字符串或空字符串.我可以这样查询
select * from a where b is not null and b <> '';

但这种情况有没有捷径? (匹配每个“非空”值)类似于:

select * from a where b is filled;
只是:
where b <> ''

会做你想要的东西为null<> ”为null,不会返回该行

原文链接:https://www.f2er.com/postgresql/192008.html

猜你在找的Postgre SQL相关文章