Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Postgres で空の文字列を整数と比較するにはどうすればよいですか?
例: Select * From xyz where anynumber = ''
数値列を「空白」にすることはできませんが、。にすることはできますnull。私はそれがあなたが望むものだと思います:
null
それanynumberがnull許容であるとすると、つまり
anynumber
create table xyz ( ... anynumber int, -- ie not "NOT NULL" ... )
nullをテストできます。
select * From xyz where anynumber is null