Coder Social home page Coder Social logo

ex-2-data-manipulation-language-dml-and-data-control-language-dcl-commands's Introduction

EX-2-Data-Manipulation-Language-DML-and-Data-Control-Language-DCL-Commands

DATA:

AIM:

To create a student database and execute DDL queries using SQL. To create a manager database and execute DML queries using SQL.

DML(Data Manipulation Language)

The SQL commands that deal with the manipulation of data present in the database belong to DML or Data Manipulation Language and this includes most of the SQL statements. It is the component of the SQL statement that controls access to data and to the database. Basically, DCL statements are grouped with DML statements.

List of DML commands:

INSERT: It is used to insert data into a table. UPDATE: It is used to update existing data within a table. DELETE: It is used to delete records from a database table.

Create the table as given below:

create table manager(enumber number(6),ename char(15),
salary number(5),commission number(4),
annualsalary number(7),Hiredate date,designation char(10),
deptno number(2),reporting char(10));

insert the following values into the table

insert into manager values(7369,'Dharsan',2500,500,30000,
'30-June-81','clerk',10,'John');
insert into manager values(7839,'Subu',3000,400,36000,
'1-Jul-82','manager',null,'James');
insert into manager values(7934,'Aadhi',3500,300,42000,
'1-May-82','manager',30,NULL);
insert into manager values(7788,'Vikash',4000,0,48000,
'12-Aug-82','clerk',50,'Bond');

Q1) Update all the records of manager table by increasing 10% of their salary as bonus.

QUERY:

UPDATE manager
SET salary = salary + (salary * 0.10),
annualsalary = annualsalary + (annualsalary * 0.10);

OUTPUT:

image

Q2) Delete the records from manager table where the salary less than 2750.

QUERY:

DELETE FROM manager WHERE salary < 2750;

OUTPUT:

image

Q3) Display each name of the employee as “Name” and annual salary as “Annual Salary” (Note: Salary in emp table is the monthly salary)

QUERY:

SELECT ename AS "Name", salary * 12 AS "Annual Salary"
FROM manager;

OUTPUT:

image

Q5) List the names of Clerks from emp table.

QUERY:

SELECT ename from manager where designation='clerk';

OUTPUT:

image

Q6) List the names of employee who are not Managers.

QUERY:

SELECT ename from manager where designation!='manager';

OUTPUT:

image

Q7) List the names of employees not eligible for commission.

QUERY:

SELECT ename from manager where commission=0;

OUTPUT:

image

Q8) List employees whose name either start or end with ‘s’.

QUERY:

SELECT ename
FROM manager
WHERE ename LIKE 'S%' OR ename LIKE '%s';

OUTPUT:

image

Q9) Sort emp table in ascending order by hire-date and list ename, job, deptno and hire-date.

QUERY:

select ename,designation,deptno,Hiredate from manager
order by Hiredate asc;

OUTPUT:

image

Q10) List the Details of Employees who have joined before 30 Sept 81.

QUERY:

SELECT *
FROM manager
WHERE Hiredate < TO_DATE('1981-09-30', 'YYYY-MM-DD');

OUTPUT:

image

Q11) List ename, deptno and sal after sorting emp table in ascending order by deptno and then descending order by sal.

QUERY:

select ename,deptno,salary from manager order by deptno asc;
select ename,deptno,salary from manager order by salary desc;

OUTPUT:

image image

Q12) List the names of employees not belonging to dept no 30,40 & 10

QUERY:

select ename from manager where deptno not in (10,30,40);

OUTPUT:

image

Q13) Find number of rows in the table EMP

#3# QUERY:

select count(*) from manager;

OUTPUT:

image

Q14) Find maximum, minimum and average salary in EMP table.

QUERY:

select ename ,salary,annualsalary from manager
where salary = (select max(salary) from manager);

select ename ,salary,annualsalary from manager
where salary = (select min(salary) from manager);

select avg(salary) from manager;

OUTPUT:

image image image

Q15) List the jobs and number of employees in each job. The result should be in the descending order of the number of employees.

QUERY:

SELECT designation, COUNT(*) AS "Number of Employees"
FROM manager
GROUP BY designation
ORDER BY COUNT(*) DESC;

OUTPUT:

image

RESULT:

Thus, Manager database is created and DML queries such as insertion, updation, deletion are executed using SQL.

ex-2-data-manipulation-language-dml-and-data-control-language-dcl-commands's People

Contributors

dineshgl avatar aadithyan22000618 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.