Are PostgreSQL column names case-sensitive?

前端 未结 3 1652
天涯浪人
天涯浪人 2020-11-21 05:46

I have a db table say, persons in Postgres handed down by another team that has a column name say, \"first_Name\". Now am trying to use PG commande

3条回答
  •  情歌与酒
    2020-11-21 06:16

    The column names which are mixed case or uppercase have to be double quoted in PostgresQL. So best convention will be to follow all small case with underscore.

提交回复
热议问题