fix syntax error in HQL doc

This commit is contained in:
Gavin King 2024-03-13 18:33:29 +01:00
parent d95084a59a
commit a1c26f54bf
1 changed files with 2 additions and 1 deletions

View File

@ -441,7 +441,8 @@ Note that the `on constraint` variant accepting the name of a unique constraint
----
insert Person (ssn, name, phone)
values ('116-76-1234', 'Jane Doe', '404 888 4319')
on conflict (ssn) set phone = excluded.phone
on conflict (ssn) do update
set phone = excluded.phone
----