Mam tabelę i muszę wybrać wszystkie wiersze z pustą wartością dla fk_fc_id
pola (jako preludium do ich usunięcia),
Column | Type | Modifiers
---------------+-----------------------------+------------------------------------------------------------
di_timestamp | timestamp without time zone |
di_item_value | character varying(10) |
fk_fc_id | integer |
di_id | integer | not null default nextval('data_item_di_id_seq1'::regclass)
Jednak to nie działa,
# select fk_fc_id,di_timestamp,di_item_value from data_item where fk_fc_id="";
ERROR: zero-length delimited identifier at or near """"
LINE 1: ...di_timestamp,di_item_value from data_item where fk_fc_id="";
^
Próbowanie Null
też nie działa.
Byłbym bardzo wdzięczny, gdyby ktoś miał jakieś sugestie, jak to rozwiązać.
null
pomocą =
operatora zawsze zwróci null
i spowoduje wykluczenie tego wiersza.