我必须对凌乱的数据库进行一些查询.某些列填充空字符串或空字符串.我可以这样查询:
select * from a where b is not null and b <> '';
但这种情况有没有捷径? (匹配每个“非空”值)类似于:
select * from a where b is filled;
只是:
原文链接:https://www.f2er.com/postgresql/192008.htmlwhere b <> ''
会做你想要的东西为null<> ”为null,不会返回该行