【发布时间】:2017-08-31 13:51:56
【问题描述】:
我知道如何创建索引
CREATE INDEX ix_dsvtable
ON public."DsVTable"
USING btree
(dind, sec, regind, datind);
如何检查索引是否已经存在?
我需要检查它们的存在,如果它们不存在则创建它们。
【问题讨论】:
-
create index if not exists ...
标签: sql postgresql indexing