Postgres table column name restrictions?

前端 未结 2 1113
刺人心
刺人心 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:11

    Here's a nice table of reserved words in PostgreSQL:
    http://www.postgresql.org/docs/current/static/sql-keywords-appendix.html

    It is probably best to simply avoid using those words as table- or column-names.
    An alternative, however, is to enclose the identifier in double-quotes, e.g.:

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

提交回复
热议问题