8 lines
508 B
Plaintext
8 lines
508 B
Plaintext
CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] $name$ ] ON [ ONLY ] $table_name$ [ USING $method$ ]
|
|
( { { $column_name$ | ( $expression$ ) } [ COLLATE $collation$ ] [ $opclass$ [ ( { $opclass_parameter$ = $value$ } [ , ... ] ) ] ] [ ASC | DESC ] [ NULLS { FIRST | LAST } ] } [ , ... ] )
|
|
[ INCLUDE ( $column_name$ [ , ... ] ) ]
|
|
[ NULLS [ NOT ] DISTINCT ]
|
|
[ WITH ( { $storage_parameter$ [ = $value$ ] } [ , ... ] ) ]
|
|
[ TABLESPACE $tablespace_name$ ]
|
|
[ WHERE $predicate$ ]
|