This commit is contained in:
cbd123cbd
2023-03-19 11:14:04 -04:00
parent 22d99f6b10
commit c6dcadd6b9
2 changed files with 7 additions and 1 deletions

View File

@ -11,7 +11,7 @@
<refsynopsisdiv> <refsynopsisdiv>
<synopsis> <synopsis>
CREATE [ UNLOGGED ] TABLE table_name CREATE [ UNLOGGED ] TABLE table_name
[ (column_name [, ...] ) ] [ (column_name [ data_type ] [, ...] ) ]
[ WITH ( {storage_parameter = value} [, ... ] ) ] [ WITH ( {storage_parameter = value} [, ... ] ) ]
[ COMPRESS | NOCOMPRESS ] [ COMPRESS | NOCOMPRESS ]
[ TABLESPACE tablespace_name ] [ TABLESPACE tablespace_name ]
@ -19,6 +19,7 @@ CREATE [ UNLOGGED ] TABLE table_name
[ TO { GROUP groupname | NODE ( nodename [, ... ] ) } ] [ TO { GROUP groupname | NODE ( nodename [, ... ] ) } ]
AS query AS query
[ WITH [ NO ] DATA ]; [ WITH [ NO ] DATA ];
NOTICE: [data_type] is only available in CENTRALIZED mode and B-format database.
</synopsis> </synopsis>
</refsynopsisdiv> </refsynopsisdiv>
</refentry> </refentry>

View File

@ -15,6 +15,7 @@ SELECT [/*+ plan_hint */] [ ALL | DISTINCT [ ON ( expression [, ...] ) ] ]
{ * | {expression [ [ AS ] output_name ]} [, ...] } { * | {expression [ [ AS ] output_name ]} [, ...] }
[into_option] [into_option]
[ FROM from_item [, ...] ] [ FROM from_item [, ...] ]
[ index_hints ]
[ WHERE condition ] [ WHERE condition ]
[ [ START WITH condition ] CONNECT BY condition [ ORDER SIBLINGS BY expression ] ] [ [ START WITH condition ] CONNECT BY condition [ ORDER SIBLINGS BY expression ] ]
[ GROUP BY grouping_element [, ...] ] [ GROUP BY grouping_element [, ...] ]
@ -69,7 +70,11 @@ PARTITION { ( partition_name ) | FOR ( partition_value [, ...] ) }
SUBPARTITION { ( subpartition_name ) | FOR ( subpartition_value [, ...] )} SUBPARTITION { ( subpartition_name ) | FOR ( subpartition_value [, ...] )}
where nlssort_expression_clause can be: where nlssort_expression_clause can be:
NLSSORT ( column_name, ' NLS_SORT = { SCHINESE_PINYIN_M | generic_m_ci } ' ) NLSSORT ( column_name, ' NLS_SORT = { SCHINESE_PINYIN_M | generic_m_ci } ' )
where index_hints can be:
FORCE { INDEX | KEY } ( index_name [, ...] )
| USE { INDEX | KEY } ( [ index_name [, ...] ] )
NOTICE: [into_option] is only available in CENTRALIZED mode and B-format database. NOTICE: [into_option] is only available in CENTRALIZED mode and B-format database.
NOTICE: [index_hints] is only available in CENTRALIZED mode and B-format database.
NOTICE: '[ [ START WITH condition ] CONNECT BY condition [ ORDER SIBLINGS BY expression ] ]' is only avaliable in CENTRALIZED mode! NOTICE: '[ [ START WITH condition ] CONNECT BY condition [ ORDER SIBLINGS BY expression ] ]' is only avaliable in CENTRALIZED mode!
NOTICE: 'SUBPARTITION { ( subpartition_name ) | FOR ( subpartition_value [, ...] )}' is only avaliable in CENTRALIZED mode! NOTICE: 'SUBPARTITION { ( subpartition_name ) | FOR ( subpartition_value [, ...] )}' is only avaliable in CENTRALIZED mode!
</synopsis> </synopsis>