Check numeric column for empty cells

datatypesnull

How can I check for a numeric column for empty values

I want something like this:

select * from table where column_numeric = ''

This does not works obviously, but what can be the equivalent of this for numeric column?

Best Answer

A numeric column without a value is null:

select * 
from the_table
where column_numeric is null;

There is no equivalent concept of an "empty string" for numbers.