如何在Postgres中将空字符串与整数进行比较?
例如: 选择*来自xyz,其中anynumber =''
答案 0 :(得分:1)
数字列不能为“空白”,但可以为null
。我想这就是你想要的:
鉴于anynumber
可以为空,即
create table xyz (
...
anynumber int, -- ie not "NOT NULL"
...
)
您可以测试null:
select * From xyz where anynumber is null