My POSTGRESQL table column in Uppercase and in entity i mentioned colume name with uppercase using @column but it gives error as column doesnt exists ? Posgress doesn’t support @column with uppercase value
Question posted in PostgreSQL
The official documentation can be found here.
The official documentation can be found here.
2
Answers
Try to use
Important is the `-charcter.
Identifiers (including column names) that are not double-quoted are folded to lowercase in PostgreSQL. Column names that were created with double-quotes and thereby retained uppercase letters (and/or other syntax violations) have to be double-quoted for the rest of their life:
Values (string literals / constants) are enclosed in single quotes:
You can also check this documentation
I hope, it helps!