sql sætning
hvad gør jeg galt her:drop table users;
create table users(
ID smallint identity(1,1) primary key,
allnames nvarchar(100),
login nvarchar(20),
pw nvarchar(20),
admin bit not null,
password nvarchar(20));
SET IDENTITY_INSERT users ON;
insert into users(allnames, login, pw, admin) values(\'Lasse Johansen\', \'gooky\', \'stupid\',1);
FEJL:
Explicit value must be specified for identity column in table \'users\' when IDENTITY_INSERT is set to ON.
