I have the following table:
Create table [dbo].[Medewerker]
(
[Id] int PRIMARY KEY IDENTITY 91,1 NOT NULL,
[Wachtwoord] varchar(50) NOT NULL,
[Rechten] varchar(100) NOT NULL,
[Gebruikersnaam] varchar(30) UNIQUE NOT NULL
)
I'm trying to make it so that the bottom line makes it so that each entry in the "Gebruikersnaam" column is unique. Is what I did right? What do you call this type of feature?