Discover millions of ebooks, audiobooks, and so much more with a free trial

Only $11.99/month after trial. Cancel anytime.

SQL Queries: 200+ Queries to Challenge you.
SQL Queries: 200+ Queries to Challenge you.
SQL Queries: 200+ Queries to Challenge you.
Ebook49 pages43 minutes

SQL Queries: 200+ Queries to Challenge you.

Rating: 5 out of 5 stars

5/5

()

Read preview

About this ebook

This is a SQL Queries Workbook in Which I have listed a collection of 200+ Queries so you can review it before your interview.
LanguageEnglish
PublisherLulu.com
Release dateJan 18, 2018
ISBN9781387526482
SQL Queries: 200+ Queries to Challenge you.

Related to SQL Queries

Related ebooks

Computers For You

View More

Related articles

Reviews for SQL Queries

Rating: 5 out of 5 stars
5/5

2 ratings1 review

What did you think?

Tap to rate

Review must be at least 10 words

  • Rating: 5 out of 5 stars
    5/5
    A good review book before interviews. Would be good if you explain the queries more.

Book preview

SQL Queries - Swaroop Kallakuri

SQL Queries: 200+ Queries to Challenge you.

SQL-QUERIES

Tables

You need to create and populate the following tables to start working on the queries.

1.1.           Emp table data

1.2.           Dept table data

2.    Exercises with Answers

2.1.           Display all the information of the EMP table?

A) select * from emp;

2.2.           Display unique Jobs from EMP table?

A)    select  distinct job from emp;

B)    select unique job from emp;

2.3.           List the emps in the asc order of their Salaries?

A) select  * from emp  order by sal asc;

2.4.           List the details of the emps in asc order of the Dptnos and desc of Jobs?

A)select * from emp order by deptno asc,job desc;

2.5.           Display all the unique job groups in the descending order?

A)select distinct job from emp order by job desc;

2.6.           Display all the details of all ‘Mgrs’

A)Select * from emp where empno in ( select  mgr  from emp) ;

2.7.           List the emps who joined before 1981.

A) select * from emp where hiredate < (’01-jan-81’);

2.8.           List the Empno, Ename, Sal, Daily sal of all emps in the asc order of Annsal.

A) select empno ,ename ,sal,sal/30,12*sal annsal from emp order by annsal asc;

2.9.           Display the Empno, Ename, job, Hiredate, Exp of all Mgrs 

A) select  empno,ename ,job,hiredate, months_between(sysdate,hiredate)  exp from emp where empno in (select mgr from emp);

2.10.     List the Empno, Ename, Sal, Exp of all emps working for Mgr 7369.

A) select empno,ename,sal,exp from emp where mgr = 7369;

2.11.     Display all the details of the emps whose Comm. Is more than their Sal.

A) select * from emp where comm. > sal;

2.12.     List the emps in the asc order of Designations of those joined after the second half of 1981.

A) select * from emp where hiredate > (’30-jun-81’) and to_char(hiredate,’YYYY’) = 1981 order by job asc;

2.13.     List the emps along with their Exp and Daily Sal is more than Rs.100.

A) select * from emp where (sal/30) >100;

2.14.     List the emps who are either ‘CLERK’ or ‘ANALYST’ in the Desc order.

A) select * from emp where job = ‘CLERK’ or job = ‘ANALYST’ order by job desc;

2.15.     List the emps who joined on 1-MAY-81,3-DEC-81,17-DEC-81,19-JAN-80 in asc order of seniority.

A) select  * from emp where hiredate  in (’01-may-81’,’03-dec-81’,’17-dec-81’,’19-jan-80’)  order by hiredate

Enjoying the preview?
Page 1 of 1