本文介绍了使用alter命令将已存在的列设置为唯一。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好!



我想将Student table中的emailId列设置为唯一。



i try

Hi all!!

I want to set my emailId column in Student table to unique.

i tried

ALTER TABLE Student
 MODIFY emailId   varchar(100)     not null unique







但它不起作用。我应该使用什么命令将其设置为唯一???




but it is not working. what command should i use to set it to unique???

推荐答案

ALTER TABLE Student ADD  CONSTRAINT UQemail UNIQUE 
(
	emailId
)







祝你好运: - )




Best regards :-)




这篇关于使用alter命令将已存在的列设置为唯一。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 04:06