create table tabella (
campo1 int not null primary key,
campo2 varchar(255));

insert into tabella (campo1,campo2) values('1','wayyy')