PostgreSQL: Why identifiers are Case-Sensitive

Guys, this is one of the important discussion of PostgreSQL. All identifiers, including column name, are Case-Sensitive in PostgreSQL? Yes: when you define identifier in the double-quote, it is a Case-Sensitive. No: when you do not use double-quote for an identifier, it is not a Case-Sensitive. For example: With double-quoted: [crayon-662f093fc7145989558809/] Without double-quoted: [crayon-662f093fc714d887858905/] My … Continue reading PostgreSQL: Why identifiers are Case-Sensitive