Postgresql ALTER TABLE ADD KEY 等效项
Postgresql ALTER TABLE ADD KEY equivalent
这在 postgresql 中的等价物是什么?
--
-- Index for the table `Artist`
--
ALTER TABLE `Artist`
ADD PRIMARY KEY (`idArtist`),
ADD UNIQUE KEY `name` (`name`,`firstName`);
ADD KEY `idFilm` (`idFilm`);
添加主键同理
alter table artist
add primary key (idartist);
对于唯一约束,您有两个选择:
alter table artist
add constraint name unique (name, firstname);
或唯一索引:
create unique index name on artist (name, firstname);
我认为 key
的东西,简单地添加一个常规索引:
create index idfilm on artist (idfilm);
这在 postgresql 中的等价物是什么?
--
-- Index for the table `Artist`
--
ALTER TABLE `Artist`
ADD PRIMARY KEY (`idArtist`),
ADD UNIQUE KEY `name` (`name`,`firstName`);
ADD KEY `idFilm` (`idFilm`);
添加主键同理
alter table artist
add primary key (idartist);
对于唯一约束,您有两个选择:
alter table artist
add constraint name unique (name, firstname);
或唯一索引:
create unique index name on artist (name, firstname);
我认为 key
的东西,简单地添加一个常规索引:
create index idfilm on artist (idfilm);