May 2019
Intermediate to advanced
600 pages
20h 46m
English
PostgreSQL folds all names to lowercase when used within an SQL statement. Consider this command:
SELECT * FROM mycust;
This is exactly the same as the following command:
SELECT * FROM MYCUST;
It is also exactly the same as this command:
SELECT * FROM MyCust;
However, it is not the same thing as the following command:
SELECT * FROM "MyCust";
Read now
Unlock full access