Skip to content

Tag: postgresql

Avoid clashes between table name and keywords psql

I need to create a table in postgreSQL like the following but “USER” is a keyword and i am getting an error. Btw shouldn’t it work anyways since I am writing “User” instead of “USER”? Answer First, don’t use reserved words for identifiers. It is simple enough to…