如何将空字符串与Postgres中的整数进行比较?
例如:
从xyz中选择*其中anynumber=''

最佳答案

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

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

您可以测试是否为空:
select * From xyz where anynumber is null

关于string - 如何将字符串与整数Postgres比较,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15089982/

10-12 16:41