Sei sulla pagina 1di 55

Table of Contents

S.No Program Page


I Certificate 2
II Acknowledgement 3
III Table of Contents 4
IV Java Code 5
1. Write a program to check whether the user is eligible to vote or not. 6

2. Write a program to find grade of any average marks based upon given 7
information.
3. Write a program to input any number and to check whether the given number 8
is divisible by 3 or not. If the number is divisible by 3 print its cube otherwise
print its square.

4. Write a program to print all even number up to given number. 9

5. Find the sum of all multiples of 3 up to 100. 10

6. Write a program to find the sum of following series. 11

7. Write a program to input any number and to print sum of all even numbers 12
using do while loop.

8. Write a program to check whether the given number is prime or not. 13

9. Write a program to print the following format 14


10. Write a program to implement the following application. 15

11. Write a program to implement the following application 17


12. Write a program to implement the following: 18

V Html Code 20
VI MySql Code 26
JAVA

CODE
1. Write a program to check whether the user is eligible to vote or not.
2. Write a program to find grade of any average marks based upon given information.
Average Grade
>=90 A
<90&&>=80 B
<80&&>=65 C
<65 D
3. Write a program to input any number and to check whether the given number is divisible by
3 or not. If the number is divisible by 3 print its cube otherwise print its square.
4. Write a program to print all even number up to given number.
5. Find the sum of all multiples of 3 up to 100.
6. Write a program to find the sum of following series.
3/7+6/14+9/21+……n terms
7. Write a program to input any number and to print sum of all even numbers using do while
loop.
8. Write a program to check whether the given number is prime or not.
9. Write a program to print the following format.
5 5 5 5 5
4 4 4 4
3 3 3
2 2
1
10. Write a program to implement the following application.
11. Write a program to implement the following application.
12. Write a program to implement the following:
HTML

CODE
<html>
<head><title>SCHEDULE</title></head>
<body>
<table border=4>
<caption> VOLUNTEER SCHEDULE</caption>
<tr bgcolor="Red">
<th>9a.m.</th>
<th>12p.m.</th>
<th>2p.m.</th>
</tr>
<tr>
<td>Anuj</td>
<td>Vijay</td>
<td>Sarfraj</td>
</tr>
<tr>
<td>Deepika</td>
<td>Vanshika</td>
<td>Pooja</td>
</tr>
<tr>
<td>Gul</td>
<td>Reyana</td>
<td>Swayam</td>
</tr>
</table>
</body>
</html>
<html>
<head>
<title> Lists</title>
</head>
<body>
<ol start=1 type =a>
<li>Mango<
<li>Grapes
<li>Watermelon
</ol>
<ul type=square>
<li>India
<li>Bangladesh
<li>Pakistan
</ul>
</body></html>
<html>
<head><title>Elements</title></head>
<h1>The Following is a list of a few chemicals:</h1>
<ul type=disc>
<li>Sodium
<li>Sulphur
<li>Magnesium</ul>
</body>
</html>
<html>
<head>
<title> My web page</title>
</head>
<body>
<font face="Monotype Corsiva" size=6>
Sachdeva Global School
</font>
<hr size=4 width=50%>
<h1> MYSQL </h1>
<h2>DDL&DML</h2>
<h3>Create,Drop are DDL Commands</h3>
<h3>Insert,Delete are DML Commands</h3>
</body></html>
<html>
<head>
<title> My web page</title>
</head>
<body>
<table bgcolor=red border=4>
<tr>
<th>Rollno</th>
<th>Name</th>
<th>Marks</th>
</tr>
<tr>
<td>1</td>
<td>Anuj</td>
<td>20</td>
</tr>
</table></body></html>
MYSQL

CODE
Aggregate Function

1.Write a code to create the following table item.

+-----------+---------------+------+-----+---------+-------+

| Field | Type | Null | Key | Default | Extra |

+-----------+---------------+------+-----+---------+-------+

| item | decimal(3,0) | NO | PRI | NULL | |

| itemname |varchar(25) | YES | | NULL | |

| cost | decimal(10,2) | YES | | NULL | |

| noofitems | decimal(3,0) | YES | | NULL | |

+-----------+---------------+------+-----+---------+-------+

create table item

(item numeric(3) primary key,

itemnamevarchar(25),

cost numeric(10,2),

noofitems numeric(3));

(2) Write a code to insert following information.

+------+----------+----------+-----------+

| item | itemname | cost | noofitems |

+------+----------+----------+-----------+

| 11 | COMPUTER | 25000.00 | 5|

| 25 | PRINTER | 30000.00 | 6|

| 27 | SCANNER | 15000.00 | 3|

| 30 | KEYBOARD | 200.00 | 25 |

+------+----------+----------+-----------+
mysql> insert into item

values(11,'COMPUTER',25000,5)

mysql> insert into item

values(25,'PRINTER',30000,6);

mysql> insert into item

values(27,'SCANNER',15000,3);

mysql> insert into item

values(30,'KEYBOARD',200,25);

(3) To display all information of item.

mysql> select * from item;

+------+----------+----------+-----------+

| item | itemname | cost | noofitems |

+------+----------+----------+-----------+

| 11 | COMPUTER | 25000.00 | 5|

| 25 | PRINTER | 30000.00 | 6|

| 27 | SCANNER | 15000.00 | 3|

| 30 | KEYBOARD | 200.00 | 25 |

+------+----------+----------+-----------+

(4) To display all information of items and total price.

mysql> select * ,noofitems*cost from item;

+------+----------+----------+-----------+----------------+
| item | itemname | cost | noofitems | noofitems*cost |

+------+----------+----------+-----------+----------------+

| 11 | COMPUTER | 25000.00 | 5| 125000.00 |

| 25 | PRINTER | 30000.00 | 6| 180000.00 |

| 27 | SCANNER | 15000.00 | 3| 45000.00 |

| 30 | KEYBOARD | 200.00 | 25 | 5000.00 |

+------+----------+----------+-----------+----------------+

(5) To select max cost value.

mysql> select max(cost) from item;

+-----------+

| max(cost) |

+-----------+

| 30000.00 |

+-----------+

(6) To display total cost value.

mysql> select sum(cost) from item;

+-----------+

| sum(cost) |

+-----------+

| 70200.00 |

+-----------+

(7) To display average value.

mysql> select avg(cost) from item;

+--------------+

| avg(cost) |
+--------------+

| 17550.000000 |

(8) To display minimum value.

mysql> select min(cost) from item;

+-----------+

| min(cost) |

+-----------+

| 200.00 |

+-----------+

(9) To display number of records.

mysql> select count(*) from item;

+----------+

| count(*) |

+----------+

| 4|

+----------+

(10)To display Item information ending with ‘t’.

mysql> select * from item where itemnamelike'%t';

Empty set (0.00 sec)


Group By

(1) Create empl table.

CREATE TABLE empl (

empno decimal(4,0) NOT NULL,

enamevarchar(10) default NULL,

jobvarchar(9) default NULL,

mgr decimal(4,0) default NULL,

hiredate date default NULL,

sal decimal(7,2) default NULL,

comm decimal(7,2) default NULL,

deptno decimal(2,0) default NULL

);

(2) Create Dept table.

CREATE TABLE dept (

deptno decimal(2,0) default NULL,

dnamevarchar(14) default NULL,

locvarchar(13) default NULL

);
(3) Insert the following information to empl table.

INSERT INTO Empl VALUES ('8369','SMITH','CLERK','8902','1990-12-


18','800.00',NULL,'20');

INSERT INTO Empl VALUES ('8499','ANYA','SALESMAN','8698','1991-


02-20','1600.00','300.00','30');

INSERT INTO Empl VALUES ('8521','SETH','SALESMAN','8698','1991-


02-22','1250.00','500.00','30');

INSERT INTO Empl VALUES


('8566','MAHADEVAN','MANAGER','8839','1991-04-
02','2985.00',NULL,'20');

INSERT INTO Empl VALUES


('8654','MOMIN','SALESMAN','8698','1991-09-
28','1250.00','1400.00','30');

INSERT INTO Empl VALUES ('8698','BINA','MANAGER','8839','1991-


05-01','2850.00',NULL,'30');

INSERT INTO Empl VALUES


('8882','SHIAVNSH','MANAGER','8839','1991-06-
09','2450.00',NULL,'10');

INSERT INTO Empl VALUES ('8888','SCOTT','ANALYST','8566','1992-


12-09','3000.00',NULL,'20');

INSERT INTO Empl VALUES ('8839','AMIR','PRESIDENT',NULL,'1991-


11-18','5000.00',NULL,'10');
INSERT INTO Empl VALUES
('8844','KULDEEP','SALESMAN','8698','1991-09-
08','1500.00','0.00','30');

INSERT INTO Empl VALUES ('8886','ANOOP','CLERK','8888','1993-01-


12','1100.00',NULL,'20');

INSERT INTO Empl VALUES ('8900','JATIN','CLERK','8698','1991-12-


03','950.00',NULL,'30');

INSERT INTO Empl VALUES ('8902','FAKIR','ANALYST','8566','1991-


12-03','3000.00',NULL,'20');

INSERT INTO Empl VALUES ('8934','MITA','CLERK','8882','1992-01-


23','1300.00',NULL,'10');

(4) Insert the following information to dept table.

INSERT INTO dept VALUES ('10','ACCOUNTING','NEW DELHI');

INSERT INTO dept VALUES ('20','RESEARCH','CHENNAI');

INSERT INTO deptVALUES ('30','SALES','KOLKATA');

INSERT INTO dept VALUES ('40','OPERATIONS', 'MUMBAI');

(5 )Display all information of empl table.

mysql>select * from empl;

+-------+-----------+-----------+------+------------+---------+---------+-------

-+

| empno | ename | job | mgr | hiredate | sal | comm


| deptno

|
+-------+-----------+-----------+------+------------+---------+---------+---
----

-+

| 8369 | SMITH | CLERK | 8902 | 1990-12-18 | 800.00 |


NULL | 20

| 8499 | ANYA | SALESMAN | 8698 | 1991-02-20 |


1600.00 | 300.00 | 30

| 8521 | SETH | SALESMAN | 8698 | 1991-02-22 |


1250.00 | 500.00 | 30

| 8566 | MAHADEVAN | MANAGER | 8839 | 1991-04-02 |


2985.00 | NULL | 20

| 8654 | MOMIN | SALESMAN | 8698 | 1991-09-28 |


1250.00 | 1400.00 | 30

| 8698 | BINA | MANAGER | 8839 | 1991-05-01 | 2850.00


| NULL | 30

| 8882 | SHIAVNSH | MANAGER | 8839 | 1991-06-09 |


2450.00 | NULL | 10

| 8888 | SCOTT | ANALYST | 8566 | 1992-12-09 | 3000.00


| NULL | 20

|
| 8839 | AMIR | PRESIDENT | NULL | 1991-11-18 |
5000.00 | NULL | 10

| 8844 | KULDEEP | SALESMAN | 8698 | 1991-09-08 |


1500.00 | 0.00 | 30

| 8886 | ANOOP | CLERK | 8888 | 1993-01-12 | 1100.00


| NULL | 20

| 8900 | JATIN | CLERK | 8698 | 1991-12-03 | 950.00 |


NULL | 30

| 8902 | FAKIR | ANALYST | 8566 | 1991-12-03 | 3000.00


| NULL | 20

| 8934 | MITA | CLERK | 8882 | 1992-01-23 | 1300.00 |


NULL | 10

+-------+-----------+-----------+------+------------+---------+---------+---
----

-+
14 rows in set (0.01 sec)

(5) Display all information of dept table.

mysql> select * from dept;

+--------+------------+-----------+
| deptno | dname | loc |

+--------+------------+-----------+

| 10 | ACCOUNTING | NEW DELHI |

| 20 | RESEARCH | CHENNAI |

| 30 | SALES | KOLKATA |

| 40 | OPERATIONS | MUMBAI |

+--------+------------+-----------+

4 rows in set (0.00 sec)

(6) To count number of employees in each department.

mysql> select count(*),deptno

->fromempl

->group by deptno;

+----------+--------+

| count(*) | deptno |

+----------+--------+

| 3| 10 |

| 5| 20 |

| 6| 30 |

+----------+--------+

3 rows in set (0.00 sec)

(7) To find sum of salary in each jab.

mysql> select sum(sal),job


->fromempl

->group by job;

+----------+-----------+

| sum(sal) | job |

+----------+-----------+

| 6000.00 | ANALYST |

| 4150.00 | CLERK |

| 8285.00 | MANAGER |

| 5000.00 | PRESIDENT |

| 5600.00 | SALESMAN |

+----------+-----------+

5 rows in set (0.00 sec)

(9)To find average of salary in each jab.

mysql> select avg(sal),job

->fromempl

->group by job;

+-------------+-----------+

| avg(sal) | job |

+-------------+-----------+

| 3000.000000 | ANALYST |

| 1037.500000 | CLERK |

| 2761.666667 | MANAGER |

| 5000.000000 | PRESIDENT |

| 1400.000000 | SALESMAN |

+-------------+-----------+

5 rows in set (0.00 sec)


(8) display number of employees in each department and having more than 5
employees.

mysql> select count(*),deptno

->fromempl

->group by deptno

-> having count(8)>=5;

+----------+--------+

| count(*) | deptno |

+----------+--------+

| 5| 20 |

| 6| 30 |

+----------+--------+

2 rows in set (0.00 sec)

(9) display minimum and maximum salary in each job.

mysql> select min(sal),max(sal),job

->fromempl

->group by job;

+----------+----------+-----------+

| min(sal) | max(sal) | job |

+----------+----------+-----------+

| 3000.00 | 3000.00 | ANALYST |

| 800.00 | 1300.00 | CLERK |

| 2450.00 | 2985.00 | MANAGER |

| 5000.00 | 5000.00 | PRESIDENT |

| 1250.00 | 1600.00 | SALESMAN |


+----------+----------+-----------+

5 rows in set (0.00 sec)

Join
(1) To display employee name ,location from empl and dept.

mysql> select ename, loc

->fromdept,empl

->whereempl.deptno=dept.deptno;

+-----------+-----------+

| ename | loc |

+-----------+-----------+

| SMITH | CHENNAI |

| ANYA | KOLKATA |

| SETH | KOLKATA |

| MAHADEVAN | CHENNAI |

| MOMIN | KOLKATA |

| BINA | KOLKATA |

| SHIAVNSH | NEW DELHI |

| SCOTT | CHENNAI |

| AMIR | NEW DELHI |


| KULDEEP | KOLKATA |

| ANOOP | CHENNAI |

| JATIN | KOLKATA |

| FAKIR | CHENNAI |

| MITA | NEW DELHI |

+-----------+-----------+

(2) To display Cartesian relation of empl and dept.

mysql> select *

->fromempl,dept;

+-------+-----------+-----------+------+------------+---------+-------
--+-------

-+--------+------------+-----------+

| empno | ename | job | mgr | hiredate | sal |


comm | deptno

| deptno | dname | loc |

+-------+-----------+-----------+------+------------+---------+-------
--+-------

-+--------+------------+-----------+

| 8369 | SMITH | CLERK | 8902 | 1990-12-18 |


800.00 | NULL | 20

| 10 | ACCOUNTING | NEW DELHI |

| 8369 | SMITH | CLERK | 8902 | 1990-12-18 |


800.00 | NULL | 20

| 20 | RESEARCH | CHENNAI |
| 8369 | SMITH | CLERK | 8902 | 1990-12-18 |
800.00 | NULL | 20

| 30 | SALES | KOLKATA |

| 8369 | SMITH | CLERK | 8902 | 1990-12-18 |


800.00 | NULL | 20

| 40 | OPERATIONS | MUMBAI |

| 8499 | ANYA | SALESMAN | 8698 | 1991-02-20 |


1600.00 | 300.00 | 30

| 10 | ACCOUNTING | NEW DELHI |

| 8499 | ANYA | SALESMAN | 8698 | 1991-02-20 |


1600.00 | 300.00 | 30

| 20 | RESEARCH | CHENNAI |

| 8499 | ANYA | SALESMAN | 8698 | 1991-02-20 |


1600.00 | 300.00 | 30

| 30 | SALES | KOLKATA |

| 8499 | ANYA | SALESMAN | 8698 | 1991-02-20 |


1600.00 | 300.00 | 30

| 40 | OPERATIONS | MUMBAI |

| 8521 | SETH | SALESMAN | 8698 | 1991-02-22 |


1250.00 | 500.00 | 30

| 10 | ACCOUNTING | NEW DELHI |

| 8521 | SETH | SALESMAN | 8698 | 1991-02-22 |


1250.00 | 500.00 | 30

| 20 | RESEARCH | CHENNAI |

| 8521 | SETH | SALESMAN | 8698 | 1991-02-22 |


1250.00 | 500.00 | 30

| 30 | SALES | KOLKATA |
| 8521 | SETH | SALESMAN | 8698 | 1991-02-22 |
1250.00 | 500.00 | 30

| 40 | OPERATIONS | MUMBAI |

| 8566 | MAHADEVAN | MANAGER | 8839 | 1991-04-02


| 2985.00 | NULL | 20

| 10 | ACCOUNTING | NEW DELHI |

| 8566 | MAHADEVAN | MANAGER | 8839 | 1991-04-02


| 2985.00 | NULL | 20

| 20 | RESEARCH | CHENNAI |

| 8566 | MAHADEVAN | MANAGER | 8839 | 1991-04-02


| 2985.00 | NULL | 20

| 30 | SALES | KOLKATA |

| 8566 | MAHADEVAN | MANAGER | 8839 | 1991-04-02


| 2985.00 | NULL | 20

| 40 | OPERATIONS | MUMBAI |

| 8654 | MOMIN | SALESMAN | 8698 | 1991-09-28 |


1250.00 | 1400.00 | 30

| 10 | ACCOUNTING | NEW DELHI |

| 8654 | MOMIN | SALESMAN | 8698 | 1991-09-28 |


1250.00 | 1400.00 | 30

| 20 | RESEARCH | CHENNAI |

| 8654 | MOMIN | SALESMAN | 8698 | 1991-09-28 |


1250.00 | 1400.00 | 30

| 30 | SALES | KOLKATA |

| 8654 | MOMIN | SALESMAN | 8698 | 1991-09-28 |


1250.00 | 1400.00 | 30

| 40 | OPERATIONS | MUMBAI |
| 8698 | BINA | MANAGER | 8839 | 1991-05-01 |
2850.00 | NULL | 30

| 10 | ACCOUNTING | NEW DELHI |

| 8698 | BINA | MANAGER | 8839 | 1991-05-01 |


2850.00 | NULL | 30

| 20 | RESEARCH | CHENNAI |

| 8698 | BINA | MANAGER | 8839 | 1991-05-01 |


2850.00 | NULL | 30

| 30 | SALES | KOLKATA |

| 8698 | BINA | MANAGER | 8839 | 1991-05-01 |


2850.00 | NULL | 30

| 40 | OPERATIONS | MUMBAI |

| 8882 | SHIAVNSH | MANAGER | 8839 | 1991-06-09 |


2450.00 | NULL | 10

| 10 | ACCOUNTING | NEW DELHI |

| 8882 | SHIAVNSH | MANAGER | 8839 | 1991-06-09 |


2450.00 | NULL | 10

| 20 | RESEARCH | CHENNAI |

| 8882 | SHIAVNSH | MANAGER | 8839 | 1991-06-09 |


2450.00 | NULL | 10

| 30 | SALES | KOLKATA |

| 8882 | SHIAVNSH | MANAGER | 8839 | 1991-06-09 |


2450.00 | NULL | 10

| 40 | OPERATIONS | MUMBAI |

| 8888 | SCOTT | ANALYST | 8566 | 1992-12-09 |


3000.00 | NULL | 20

| 10 | ACCOUNTING | NEW DELHI |


| 8888 | SCOTT | ANALYST | 8566 | 1992-12-09 |
3000.00 | NULL | 20

| 20 | RESEARCH | CHENNAI |

| 8888 | SCOTT | ANALYST | 8566 | 1992-12-09 |


3000.00 | NULL | 20

| 30 | SALES | KOLKATA |

| 8888 | SCOTT | ANALYST | 8566 | 1992-12-09 |


3000.00 | NULL | 20

| 40 | OPERATIONS | MUMBAI |

| 8839 | AMIR | PRESIDENT | NULL | 1991-11-18 |


5000.00 | NULL | 10

| 10 | ACCOUNTING | NEW DELHI |

| 8839 | AMIR | PRESIDENT | NULL | 1991-11-18 |


5000.00 | NULL | 10

| 20 | RESEARCH | CHENNAI |

| 8839 | AMIR | PRESIDENT | NULL | 1991-11-18 |


5000.00 | NULL | 10

| 30 | SALES | KOLKATA |

| 8839 | AMIR | PRESIDENT | NULL | 1991-11-18 |


5000.00 | NULL | 10

| 40 | OPERATIONS | MUMBAI |

| 8844 | KULDEEP | SALESMAN | 8698 | 1991-09-08 |


1500.00 | 0.00 | 30

| 10 | ACCOUNTING | NEW DELHI |

| 8844 | KULDEEP | SALESMAN | 8698 | 1991-09-08 |


1500.00 | 0.00 | 30

| 20 | RESEARCH | CHENNAI |
| 8844 | KULDEEP | SALESMAN | 8698 | 1991-09-08 |
1500.00 | 0.00 | 30

| 30 | SALES | KOLKATA |

| 8844 | KULDEEP | SALESMAN | 8698 | 1991-09-08 |


1500.00 | 0.00 | 30

| 40 | OPERATIONS | MUMBAI |

| 8886 | ANOOP | CLERK | 8888 | 1993-01-12 |


1100.00 | NULL | 20

| 10 | ACCOUNTING | NEW DELHI |

| 8886 | ANOOP | CLERK | 8888 | 1993-01-12 |


1100.00 | NULL | 20

| 20 | RESEARCH | CHENNAI |

| 8886 | ANOOP | CLERK | 8888 | 1993-01-12 |


1100.00 | NULL | 20

| 30 | SALES | KOLKATA |

| 8886 | ANOOP | CLERK | 8888 | 1993-01-12 |


1100.00 | NULL | 20

| 40 | OPERATIONS | MUMBAI |

| 8900 | JATIN | CLERK | 8698 | 1991-12-03 |


950.00 | NULL | 30

| 10 | ACCOUNTING | NEW DELHI |

| 8900 | JATIN | CLERK | 8698 | 1991-12-03 |


950.00 | NULL | 30

| 20 | RESEARCH | CHENNAI |

| 8900 | JATIN | CLERK | 8698 | 1991-12-03 |


950.00 | NULL | 30

| 30 | SALES | KOLKATA |
| 8900 | JATIN | CLERK | 8698 | 1991-12-03 |
950.00 | NULL | 30

| 40 | OPERATIONS | MUMBAI |

| 8902 | FAKIR | ANALYST | 8566 | 1991-12-03 |


3000.00 | NULL | 20

| 10 | ACCOUNTING | NEW DELHI |

| 8902 | FAKIR | ANALYST | 8566 | 1991-12-03 |


3000.00 | NULL | 20

| 20 | RESEARCH | CHENNAI |

| 8902 | FAKIR | ANALYST | 8566 | 1991-12-03 |


3000.00 | NULL | 20

| 30 | SALES | KOLKATA |

| 8902 | FAKIR | ANALYST | 8566 | 1991-12-03 |


3000.00 | NULL | 20

| 40 | OPERATIONS | MUMBAI |

| 8934 | MITA | CLERK | 8882 | 1992-01-23 |


1300.00 | NULL | 10

| 10 | ACCOUNTING | NEW DELHI |

| 8934 | MITA | CLERK | 8882 | 1992-01-23 |


1300.00 | NULL | 10

| 20 | RESEARCH | CHENNAI |

| 8934 | MITA | CLERK | 8882 | 1992-01-23 |


1300.00 | NULL | 10

| 30 | SALES | KOLKATA |

| 8934 | MITA | CLERK | 8882 | 1992-01-23 |


1300.00 | NULL | 10

| 40 | OPERATIONS | MUMBAI |
+-------+-----------+-----------+------+------------+---------+-------
--+-------

-+--------+------------+-----------+

56 rows in set (0.01 sec)

(3) To display natural join.

mysql> select *

->fromempl natural join dept;

+--------+-------+-----------+-----------+------+------------+---------+---
-----

-+------------+-----------+

| deptno | empno | ename | job | mgr | hiredate | sal


| comm

| dname | loc |

+--------+-------+-----------+-----------+------+------------+---------+---
-----

-+------------+-----------+

| 20 | 8369 | SMITH | CLERK | 8902 | 1990-12-18 |


800.00 | NULL

| RESEARCH | CHENNAI |

| 30 | 8499 | ANYA | SALESMAN | 8698 | 1991-02-20 |


1600.00 | 300.00

| SALES | KOLKATA |
| 30 | 8521 | SETH | SALESMAN | 8698 | 1991-02-22
| 1250.00 | 500.00

| SALES | KOLKATA |

| 20 | 8566 | MAHADEVAN | MANAGER | 8839 | 1991-


04-02 | 2985.00 | NULL

| RESEARCH | CHENNAI |

| 30 | 8654 | MOMIN | SALESMAN | 8698 | 1991-09-28


| 1250.00 | 1400.00

| SALES | KOLKATA |

| 30 | 8698 | BINA | MANAGER | 8839 | 1991-05-01 |


2850.00 | NULL

| SALES | KOLKATA |

| 10 | 8882 | SHIAVNSH | MANAGER | 8839 | 1991-06-


09 | 2450.00 | NULL

| ACCOUNTING | NEW DELHI |

| 20 | 8888 | SCOTT | ANALYST | 8566 | 1992-12-09 |


3000.00 | NULL

| RESEARCH | CHENNAI |

| 10 | 8839 | AMIR | PRESIDENT | NULL | 1991-11-18


| 5000.00 | NULL

| ACCOUNTING | NEW DELHI |

| 30 | 8844 | KULDEEP | SALESMAN | 8698 | 1991-09-


08 | 1500.00 | 0.00

| SALES | KOLKATA |

| 20 | 8886 | ANOOP | CLERK | 8888 | 1993-01-12 |


1100.00 | NULL

| RESEARCH | CHENNAI |

| 30 | 8900 | JATIN | CLERK | 8698 | 1991-12-03 |


950.00 | NULL
| SALES | KOLKATA |

| 20 | 8902 | FAKIR | ANALYST | 8566 | 1991-12-03 |


3000.00 | NULL

| RESEARCH | CHENNAI |

| 10 | 8934 | MITA | CLERK | 8882 | 1992-01-23 |


1300.00 | NULL

| ACCOUNTING | NEW DELHI |

+--------+-------+-----------+-----------+------+------------+---------+---
-----

-+------------+-----------+

14 rows in set (0.00 sec)

Potrebbero piacerti anche