1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-28 18:48:04 +03:00

docs: HTML-escape '>' in '=>' using HTML entities

This commit is contained in:
Bruce Momjian
2015-08-05 23:03:45 -04:00
parent b8fe12a836
commit e641d7b22f
10 changed files with 34 additions and 34 deletions

View File

@@ -1885,7 +1885,7 @@ SELECT 3, 'three';
it's usually better to override the default names with a table alias
list, like this:
<programlisting>
=> SELECT * FROM (VALUES (1, 'one'), (2, 'two'), (3, 'three')) AS t (num,letter);
=&gt; SELECT * FROM (VALUES (1, 'one'), (2, 'two'), (3, 'three')) AS t (num,letter);
num | letter
-----+--------
1 | one