Ho una tabella e devo selezionare tutte le righe con un valore vuoto per il fk_fc_id
campo (come preludio alla loro eliminazione),
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)
Tuttavia, questo non funziona,
# 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="";
^
Anche provare Null
non funziona.
Se qualcuno ha qualche suggerimento su come ordinare questo, sarei molto grato.
null
utilizzo =
dell'operatore restituirà sempre null
e farà sì che quella riga venga esclusa.