Postgres table column name restrictions?

前端 未结 2 1110
刺人心
刺人心 2020-12-15 02:39

I did this in psql:

CREATE TABLE IF NOT EXISTS apiss (skey TEXT, time INTEGER, user TEXT, ip TEXT);

I get

ERROR:  syntax er         


        
2条回答
  •  抹茶落季
    2020-12-15 03:19

    In my company, I had to scan an entire database for reserved words. I solved the task with the help of

    select * from pg_get_keywords()
    

提交回复
热议问题