ERROR: column of relation does not exist PostgreSQL ,Unable to run insert query

烈酒焚心 提交于 2019-11-29 10:01:54

If you define the columns with double quotes, then you need to use them when you refer to the column:

insert into tester3 ("UN0", "UN1")
     values ( 1, 'jishnu1');

I would suggest you remove the double quotes from the column names in the CREATE TABLE statement.

try this using double quotes to your column names

insert into tester3 ("UN0", "UN1") values ( 1, 'jishnu1');
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!