You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create table client(ID serial primary key not null,fName varchar(50) not null,lName varchar(50) not null,address varchar(100) not null,telephone varchar(50) not null,email varchar(50));
insert into client(fName,lName,address,telephone,email) values('Dennis', 'Christy', 'Burkina','0275876542', '[email protected]');
insert into client(fName,lName,address,telephone,email) values('Bill', 'Christy','Achimota', '0244-2723-23-123', '[email protected]');