Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

STATEMENTS

 create table PMFORCES(Force_no int,Sol_Name varchar(20),Age


int,Joining_year int);
 Insert into PMFORCES values(05463,'Jordan',34,2007);
 Insert into PMFORCES values(05948,'Anderson',35,2005);
 Insert into PMFORCES values(05264,'Neesham',38,2004);
 Insert into PMFORCES values(05041,'Smith',33,2012);
 Select * from PMFORCES;

You might also like