You are on page 1of 1

create table firsttt1 ( serialno integer not null constraint pk_serialnos primary key, userid varchar(20) not null,

passwd varchar(10) not null ) insert into firsttt1 values(1,'vishal','gulati') insert into firsttt1 values(2,'me','rocks') select * from firsttt1

You might also like