我第一次使用Postgres,並且遇到由SQL代碼添加新行的問題。 這裏是我的表結構: 這裏是我在執行的代碼: INSERT INTO recensione (testo, voto, utente, merchant) VALUES
('this is a text', 2, 'username', 1234567);
我得到這個錯誤: ERROR: syntax error at or
使用django,我在表中添加了一個新條目。現在我想用PHPPgAdmin (postgresql)刪除它,但是我得到了No unique Identifier for this row錯誤。問題是什麼? django自動添加一個自動遞增的主鍵,所以我無法弄清楚是什麼問題? 我讀this post,但它沒有幫助。如果仔細注意圖像,您會看到主鍵列標籤是id,但不是pk,因爲它應該在django中。