Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. Column | Type | Modifiers
  2. ---------------+-----------------------------+------------------------------------------------------------
  3. di_timestamp | timestamp without time zone |
  4. di_item_value | character varying(10) |
  5. fk_fc_id | integer |
  6. di_id | integer | not null default nextval('data_item_di_id_seq1'::regclass)
  7.  
  8. # select fk_fc_id,di_timestamp,di_item_value from data_item where fk_fc_id="";
  9. ERROR: zero-length delimited identifier at or near """"
  10. LINE 1: ...di_timestamp,di_item_value from data_item where fk_fc_id="";
  11. ^
  12.  
  13. SELECT fk_fc_id,
  14. di_timestamp,
  15. di_item_value
  16. FROM data_item
  17. WHERE fk_fc_id IS NULL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement