The UNIQUE constraint uniquely identifies each record in a database table.
Create Table Stu_Class_10
create table Stu_Class_10( Stu_Id integer(2) NOT NULL, Stu_Name varchar(15), Stu_Class varchar(10), UNIQUE (id)) |
Insert data into Stu_Class_10
insert into Stu_Class_10 values(1,'Komal',10); insert into Stu_Class_10 values(2,'Ajay',10); insert into Stu_Class_10 values(3,'Rakesh',10); insert into Stu_Class_10 values(4,'Bhanu',10); insert into Stu_Class_10 values(5,'Santosh',10); |
Stu_Class_10
| Stu_Id | Stu_Name | Stu_Class |
| 1 | Komal | 10 |
| 2 | Ajay | 10 |
| 3 | Rakesh | 10 |
| 4 | Bhanu | 10 |
| 5 | Santosh | 10 |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: SQL UNIQUE Constraint
Post your Comment