1
我使用\i /path/to/some/file.sql
向postgres添加了一個文件,但文件中存在拼寫錯誤。從postgresql中刪除外部文件
這裏是我有這樣的文件:
CREATE VIEW holidays AS
SELECT event_id AS holiday_id, title AS name, starts AS date
FROM events
WHERE title LIKE '%Day%' AND venue_id IS NULL;
在原來的版本我有%DAY%
。當再次運行\i /path/to/some/file.sql
,我收到此錯誤:
ERROR: relation "holidays" already exists
如何撤消這種關係讓代碼再次運行?
謝謝
我已經更新了我的問題......其實,我從你所說的並且剛剛跑過'DROP VIEW holidays'找出它的結果 –
請參閱http://www.postgresql.org/docs/9.2/static/sql- dropview.html –