Commit 73a835ee authored by Bruce Momjian's avatar Bruce Momjian

Mention "unquoted" identifiers are case-insensitive.

parent bf62b1a0
<!-- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.139 2009/12/15 17:57:46 tgl Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.140 2010/02/03 22:48:55 momjian Exp $ -->
<chapter id="sql-syntax"> <chapter id="sql-syntax">
<title>SQL Syntax</title> <title>SQL Syntax</title>
...@@ -144,7 +144,7 @@ INSERT INTO MY_TABLE VALUES (3, 'hi there'); ...@@ -144,7 +144,7 @@ INSERT INTO MY_TABLE VALUES (3, 'hi there');
<primary>case sensitivity</primary> <primary>case sensitivity</primary>
<secondary>of SQL commands</secondary> <secondary>of SQL commands</secondary>
</indexterm> </indexterm>
Identifier and key word names are case insensitive. Therefore: Unquoted identifier and key word names are case insensitive. Therefore:
<programlisting> <programlisting>
UPDATE MY_TABLE SET A = 5; UPDATE MY_TABLE SET A = 5;
</programlisting> </programlisting>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment