select_into_varlist

This commit is contained in:
weiwt
2022-11-29 23:40:06 +08:00
parent 7b18154c8d
commit 8274c4041d
26 changed files with 1091 additions and 94 deletions

View File

@ -13,7 +13,7 @@
[ WITH [ RECURSIVE ] with_query [, ...] ]
SELECT [ ALL | DISTINCT [ ON ( expression [, ...] ) ] ]
{ * | {expression [ [ AS ] output_name ]} [, ...] }
INTO [ UNLOGGED ] [ TABLE ] new_table
INTO { [ UNLOGGED ] [ TABLE ] new_table | varlist }
[ FROM from_item [, ...] ]
[ WHERE condition ]
[ GROUP BY expression [, ...] ]
@ -27,4 +27,4 @@ SELECT [ ALL | DISTINCT [ ON ( expression [, ...] ) ] ]
[ {FOR { UPDATE | SHARE } [ OF table_name [, ...] ] [ NOWAIT | WAIT N ]} [...] ];
</synopsis>
</refsynopsisdiv>
</refentry>
</refentry>