Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
15 views1 page

Emp Assign

Uploaded by

vasu18ch
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views1 page

Emp Assign

Uploaded by

vasu18ch
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

create table emp(empID int,ename varchar(30),doj date,city varchar(20),salary

int,comm int,deptno int);


insert into emp values(1011,"Shivam","2012-05-26","Delhi",34000,null,10);
insert into emp values(1012,"Kartik","2014-01-31","Mumbai",48000,null,30);
insert into emp values(1013,"Dhruv","2010-07-22","Kolkata",45000,2400,20);
insert into emp values(1014,"Shreya","2015-10-20","Delhi",29000,1200,20);
insert into emp values(1015,"Mansi","2014-02-05","Chennai",36000,null,10);
insert into emp values(1016,"Manoj","2016-12-01","Kolkata",51000,0,30);
insert into emp values(1017,"Shilpa","2012-04-12","Mumbai",25000,null,30);
insert into emp values(1018,"Rohit","2016-11-15","Delhi",47000,1400,10);
insert into emp values(1019,"Paul","2014-06-08","Chennai",42000,null,20);
insert into emp values(1020,"Gloria","2015-03-18","Delhi",60000,0,10);

You might also like