I have the following table with the password field that has to be limited to 6 neither more nor less, I tried with the modifier check but only assign it numbers or letters, there is some way to limit it to 6 but they can be any of the 2 things?
create table Empleado
(ci int not null,
contraseña varchar(6) not null,
nombreCompleto varchar(20) not null,
primary key(ci),
logica bit default(0))
go