创建索引时,支持tablespace后面加LOCAL关键字
CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] [schema_name.]name ] ON [ ONLY ] table_name [ USING method ]
(
{ column_name | ( expression ) }
[ COLLATE collation ]
[ opclass [ ( opclass_parameter = value [, ... ] ) ] ]
[ ASC | DESC ]
[ NULLS { FIRST | LAST } ]
[ LOCAL | GLOBAL ]
[, ...]
)
[ INCLUDE ( column_name [, ...] ) ]
[ WITH ( storage_parameter [= value] [, ... ] ) ]
[ COMPRESS | NOCOMPRESS | LOGGING | NOLOGGING | COMPRESS LOGGING | COMPRESS NOLOGGING | NOCOMPRESS LOGGING | NOCOMPRESS NOLOGGING | LOGGING COMPRESS | LOGGING NOCOMPRESS | NOLOGGING COMPRESS | NOLOGGING NOCOMPRESS ]
[ TABLESPACE tablespace_name ]
[ WHERE predicate ]
完善后
CREATE [ UNIQUE ] INDEX [ CONCURRENTLY ] [ [ IF NOT EXISTS ] [schema_name.]name ] ON [ ONLY ] table_name [ USING method ]
( { column_name | ( expression ) } [ COLLATE collation ] [ opclass [ ( opclass_parameter = value [, ... ] ) ] ] [ ASC | DESC ] [ NULLS { FIRST | LAST } ] [, ...] )
[ INCLUDE ( column_name [, ...] ) ]
[ WITH ( storage_parameter [= value] [, ... ] ) ]
[ LOCAL | GLOBAL ]
[ LOGGING | NOLOGGING ]
[ COMPRESS | NOCOMPRESS ]
[ TABLESPACE tablespace_name ]
[ WHERE predicate ]
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。




