如何将字符串与整数Postgres进行比较

时间:2013-02-26 13:10:55

标签: string postgresql integer compare

如何在Postgres中将空字符串与整数进行比较?

例如: 选择*来自xyz,其中anynumber =''

1 个答案:

答案 0 :(得分:1)

数字列不能为“空白”,但可以为null。我想这就是你想要的:

鉴于anynumber可以为空,即

create table xyz (
    ...
    anynumber int,  -- ie not "NOT NULL"
    ...
)

您可以测试null:

select * From xyz where anynumber is null