PostgreSQL selecting empty fields of integer type
This is not really database administration related, nor is it really about PostgreSQL, but as @foibs answered, you should have a look at IS NULL:
SELECT fk_fc_id,
di_timestamp,
di_item_value
FROM data_item
WHERE fk_fc_id IS NULL