summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFujii Masao2026-09-01 13:46:10 +0000
committerFujii Masao2026-09-01 13:48:30 +0000
commit4aa640a395cab42012fd26570dafca1001a6debd (patch)
treeafde57b5b918e8dba561fb4ed2b632e308992582 /doc
parentbfb08d0946e91cf73d1a3bca8c908d6dccb80735 (diff)
doc: clarify aliasing of VALUES in FROM clauses
The VALUES reference page said that an AS clause was required when VALUES is used in a FROM clause. This was imprecise because AS is optional when specifying an alias. In v14 and v15, a table alias is still required in this case, so state that explicitly instead. In v16 and later, commit bcedd8f5fce made table aliases for subqueries in FROM clauses optional, so state that the table alias is optional there. In all branches, continue to recommend explicit column aliases as good practice. Backpatch to all supported versions. Author: Ian Barwick <barwick@gmail.com> Reviewed-by: Laurenz Albe <laurenz.albe@cybertec.at> Reviewed-by: Fujii Masao <masao.fujii@gmail.com> Discussion: https://postgr.es/m/CAB8KJ=jrvZdNLLhYSiCgbjLTz2LKEjYw+-HVQkaF+kgk61KtHA@mail.gmail.com Backpatch-through: 14
Diffstat (limited to 'doc')
-rw-r--r--doc/src/sgml/ref/values.sgml7
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/values.sgml b/doc/src/sgml/ref/values.sgml
index 4bf7bfdffee..8536d065aad 100644
--- a/doc/src/sgml/ref/values.sgml
+++ b/doc/src/sgml/ref/values.sgml
@@ -198,10 +198,9 @@ UPDATE employees SET salary = salary * v.increase
WHERE employees.depno = v.depno AND employees.sales &gt;= v.target;
</programlisting>
- Note that an <literal>AS</literal> clause is required when <command>VALUES</command>
- is used in a <literal>FROM</literal> clause, just as is true for
- <command>SELECT</command>. It is not required that the <literal>AS</literal> clause
- specify names for all the columns, but it's good practice to do so.
+ Note that if <command>VALUES</command> is used in a <literal>FROM</literal>
+ clause, a table alias is optional. Assigning alias names to the columns
+ of the <command>VALUES</command> list is optional, but is good practice.
(The default column names for <command>VALUES</command> are <literal>column1</literal>,
<literal>column2</literal>, etc. in <productname>PostgreSQL</productname>, but
these names might be different in other database systems.)