ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
1
DATABASE MANAGEMENT
SYSTEM
Unit - III
2
SELECTION & PROJECTION
Retrieve all columns and rows from the Student table.
Retrieve only specific columns from the Student table.
Retrieve students who are in the specific department.
Retrieve all students sorted by age in ascending order.
SELECT * FROM student;
SELECT student_id, first_name, last_name FROM student;
SELECT * FROM student WHERE department = 'Computer Science';
SELECT * FROM student ORDER BY age ASC;
Retrieve students sorted by (ORDER BY) grade in descending order
Retrieve only the first 4 rows (ROWNUM) from the table
Retrieve students who are in the Computer Science department
AND have a grade of A
Retrieve students whose first_name starts with C (LIKE ¡¯C%¡¯)
Retrieve students who are IN either Physics or Chemistry
departments
SELECT * FROM student ORDER BY grade DESC;
select * from student where ROWNUM <= 4
SELECT * FROM student WHERE department = 'Computer Science' AND
grade = 'A';
SELECT * FROM student WHERE first_name LIKE 'C%';
SELECT * FROM student WHERE department IN ('Physics', 'Chemistry');
Retrieve students whose age is BETWEEN 21 AND23
Retrieve the total number of students (COUNT)
Retrieve the average age of students (AVG)
Retrieve the highest age in the table (MAX)
Retrieve the number (COUNT) of students in each department,
GROUP BY Department
SELECT * FROM student WHERE age BETWEEN 21 AND 23;
SELECT COUNT(*) AS total_students FROM student;
SELECT AVG(age) AS average_age FROM student;
SELECT MAX(age) AS highest_age FROM student;
SELECT department, COUNT(*) AS student_count FROM
student GROUP BY department;
Retrieve the number (COUNT) of students in each
department, GROUP BY Department
SELECT department, COUNT(*) AS student_count
FROM student GROUP BY department;
Retrieve departments with more than 2 students.
SELECT department, COUNT(*) AS student_count FROM
student GROUP BY department HAVING COUNT(*) > 2;
Retrieve unique (DISTINCT) departments from the
student table.
SELECT DISTINCT department FROM student;
Retrieve students who are older than the average age
SELECT * FROM student
WHERE age > (SELECT AVG(age) FROM student);
Retrieve students from two departments and combine results.
SELECT * FROM student WHERE department = 'Computer Science'
UNION
SELECT * FROM student WHERE department = 'Mathematics';
Retrieve students with a custom column indicating if they are a senior
(age >= 21) or junior (age < 21) as status , order by status. (CASE END)
SELECT student_id, first_name, last_name, age,
CASE
WHEN age >= 21 THEN 'Senior'
ELSE 'Junior'
END AS student_status
FROM student ORDER BY student_status;
Retrieve students who do not have a grade assigned.
SELECT * FROM student WHERE grade IS NULL;
12
SQL: Arithmetic and Logical Operations
? Arithmetic Operations:
? Multiplication (*),
? Addition (+),
? Subtraction (-),
? Division (/)
? Logical Operations:
? AND,
? OR,
? NOT
13
SQL: Arithmetic and Logical Operations
CREATE TABLE employee (
employee_id INT PRIMARY KEY,
first_name VARCHAR2(50),
last_name VARCHAR2(50),
email VARCHAR2(100),
department VARCHAR(50),
hire_date DATE,
salary DECIMAL(10, 2)
);
INSERT INTO employee (employee_id, first_name, last_name, email,
department, hire_date, salary)
VALUES
(1, 'John', 'Doe', 'john.doe@example.com', 'Sales', '15-01-2020',
55000.00),
(2, 'Jane', 'Smith', 'jane.smith@example.com', 'Engineering', '16-01-
2020', 75000.00),
(3, 'Sam', 'Brown', 'sam.brown@example.com', 'HR', '17-01-2020',
48000.00),
(4, 'Emily', 'Jones', 'emily.jones@example.com', 'Marketing', '15-01-
2021', 60000.00),
(5, 'Michael', 'Taylor', 'michael.taylor@example.com', 'Sales', '16-01-
2021', 53000.00),
(6, 'Linda', 'Lee', 'linda.lee@example.com', 'Engineering', '16-01-
2021', 78000.00),
(7, 'Chris', 'Davis', 'chris.davis@example.com', 'Finance', '17-01-2021',
90000.00),
(8, 'Anna', 'Martinez', 'anna.martinez@example.com', 'HR', '15-01-
2022', 52000.00),
(9, 'David', 'Wilson', 'david.wilson@example.com', 'Marketing', '16-
01-2022', 62000.00),
(10, 'Sophia', 'Miller', 'sophia.miller@example.com', 'Finance', '17-01-
2022', 95000.00);
Calculate Annual Salary of the employees
SELECT first_name, last_name, salary, (salary * 12)
AS annual_salary
FROM employee;
Arithmetic Operation
Multiplication (*)
Calculate the salary after applying the bonus (10%)
SELECT first_name, last_name, salary,
(salary + (salary * 0.10))
AS salary_after_bonus
FROM employee;
Arithmetic Operation
Addition (+)
Calculate the salary after deductions (5%)
SELECT first_name, last_name, salary,
(salary - (salary * 0.05))
AS salary_after_deduction
FROM employee;
Arithmetic Operation
Subtraction (-)
Calculate the salary of the employees per day
SELECT first_name, last_name, salary,
ROUND((salary / 30),2)
AS salary_per_day
FROM employee;
Arithmetic Operation
Division (/)
Find employees who work either in the 'Sales' or
'Marketing' department
SELECT first_name, last_name, department
FROM employee
WHERE department = 'Sales' OR department = 'Marketing';
Logical Operation
OR
Find employees who work in the 'Engineering'
department and have a salary greater than 60,000
SELECT first_name, last_name, salary, department
FROM employee
WHERE salary > 60000 AND department = 'Engineering';
Logical Operation
AND
Find employees who do not work in the 'HR'
department
SELECT first_name, last_name, department
FROM employee
WHERE NOT department = 'HR';
Logical Operation
NOT
DBMS Notes selection projection aggregate
22
Lab Program 6
? Develop a program that includes the features NESTED IF, CASE.
The program can be extended using the NULLIF and COALESCE
functions.
NESTED IF
CASE
NULLIF
COALESCE
23
Lab Program 6
? Accept the marks and display the grade as per the
following
? If Marks are >= 90, then Grade is A.
? ElsIf Marks are >= to 80, then Check if Marks >= 85, then Grade
is B+, else Grade is B.
? ElsIf Marks are >= to 70, then Grade is C,
? else Grade is D
Lab Program 6
DECLARE
BEGIN
END
/
v_grade CHAR(2);
v_marks NUMBER;
v_marks := &new_marks;
IF v_marks >= 90 THEN v_grade := 'A';
ELSIF v_marks >= 80 THEN
IF v_marks >= 85 THEN v_grade := 'B+';
ELSE v_grade := 'B';
END IF;
ELSIF v_marks >= 70 THEN v_grade := 'C';
ELSE v_grade := 'D';
ENDIF
DBMS_OUTPUT.PUT_LINE('The grade is: ' || v_grade);
NESTED IF
25
Lab Program 6: CASE
? Accept the Grade and display as per the following
? A ¨C Outstanding
? B ¨C Excellent
? C ¨C Very Good
? D ¨C Average
? F - Poor
Lab Program 6: CASE
DECLARE
BEGIN
END
/
grd CHAR(1);
grd := '&new_grd';
CASE
END CASE;
grd
WHEN 'A' THEN dbms_output.Put_line('Your Grade is: Outstanding');
WHEN 'B' THEN dbms_output.Put_line('Your Grade is: Excellent');
WHEN 'C' THEN dbms_output.Put_line('Your Grade is: Very Good');
WHEN 'D' THEN dbms_output. Put_line('Your Grade is: Average');
WHEN 'F' THEN dbms_output.Put_line('Your Grade is: Poor');
ELSE dbms_output.Put_line('No such grade in the list.');
Lab Program 6: NULLIF, COALESCE
SQL COALESCE function is used to handle NULL values
in a database query by returning the first non-NULL value
from a list of expressions or column values
SQL COALESCE function deals with NULL values in a query
by substituting them with a default value or selecting the first
non-NULL value from a list of option
NULLIF compares expr1 and expr2. If they are equal, then
the function returns null. If they are not equal, then the
function returns expr1
CREATE TABLE employee (
employee_id INT PRIMARY KEY,
first_name VARCHAR2(50),
last_name VARCHAR2(50),
salary DECIMAL(10, 2),
department VARCHAR2(50),
hire_date DATE
);
Lab Program 6: NULLIF, COALESCE
INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date)
VALUES (1, 'Ram', 'Charan', 50000, 'HR', TO_DATE('2020-01-15', 'YYYY-MM-DD'));
INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date)
VALUES (2, 'Pawan', 'Smith', 16000, 'Finance', TO_DATE('2018-03-10', 'YYYY-MM-DD'));
INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date)
VALUES (3, 'Ram', 'Shyam', 7000, '', TO_DATE('2025-02-09', 'YYYY-MM-DD'));
INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (4, 'Bob', 'Brown', 8000, 'HR',
TO_DATE('2021-11-05', 'YYYY-MM-DD'));
INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (5, 'Charlie', 'Davis', 9000, 'Finance',
TO_DATE('2017-02-17', 'YYYY-MM-DD'));
INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date)
VALUES (6, 'David', 'Garcia', 10000, 'Engineering', TO_DATE('2025-02-09', 'YYYY-MM-DD'));
INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date)
VALUES (7, 'Emma', 'Martinez', 5500, 'Marketing', TO_DATE('09-02-2025', 'DD-MM-YY'));
INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date)
VALUES (8, 'Frank', 'Hernandez', 6500, 'HR', TO_DATE('2022-01-10', 'YYYY-MM-DD'));
INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date)
VALUES (9, 'Grace', 'Lopez', 7500, 'Finance', TO_DATE('2019-12-05', 'YYYY-MM-DD'));
INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date)
VALUES (10, 'Brahmanandam', 'Garu', 9500, '', TO_DATE('2016-07-30', 'YYYY-MM-DD'));
INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date)
VALUES (11, 'Ram', 'Pay','' ,'Marketing', TO_DATE('2019-07-30', 'YYYY-MM-DD'));
INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date)
VALUES (12, 'Hare', 'Krishna', 19500, 'HR', NULL);
INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date)
VALUES (13, 'Rama', 'Krishna','','Sales', TO_DATE('2021-07-30', 'YYYY-MM-DD'));
Lab Program 6: COALESCE
Replace all NULL values in the department column with
default department ie., CSE using COALESCE
SELECT employee_id, department, COALESCE(department,'CSE')
AS UpdatedDept
FROM employee;
Replace all NULL values in the salary column with 1000 using
COALESCE
SELECT employee_id, salary, COALESCE(salary,1000) AS UpdatedSal
FROM employee;
Lab Program 6: NULLIF
If salary is equal to 50000 then assign with NULL
SELECT employee_id, salary, NULLIF(salary,50000)
AS UpdatedSal
FROM employee;
Marketing Dept is closed;
If department is Marketing, then assign with NULL
SELECT employee_id, department,
NULLIF(department,¡¯Marketing¡¯) AS UpdatedDept
FROM employee;
31
Unit III
? SQL: Basic SQL querying (select and project) using where clause,
arithmetic & logical operations,
? SQL functions (Date and Time, Numeric, String conversion).
? Creating tables with relationship, implementation of key and integrity
constraints, grouping, aggregation, ordering,
?nested queries, sub queries,
?implementation of different types of joins,
?relational set operations
32
Nested Queries

More Related Content

Similar to DBMS Notes selection projection aggregate (20)

SQL Top 10 Interview QnA By Rishabh Mishra in Hindi.pdf
SQL Top 10 Interview QnA By Rishabh Mishra in Hindi.pdfSQL Top 10 Interview QnA By Rishabh Mishra in Hindi.pdf
SQL Top 10 Interview QnA By Rishabh Mishra in Hindi.pdf
SudhanshuPandey222889
?
Oracle OCP 1Z0-007Ìâ¿â
Oracle OCP 1Z0-007Ìâ¿âOracle OCP 1Z0-007Ìâ¿â
Oracle OCP 1Z0-007Ìâ¿â
renguzi
?
Chinabankppt
ChinabankpptChinabankppt
Chinabankppt
newrforce
?
ADVANCED DATA WAREHOUSE AND DATA MINING SECOND LECTURE(1).pptx
ADVANCED DATA WAREHOUSE AND DATA MINING SECOND LECTURE(1).pptxADVANCED DATA WAREHOUSE AND DATA MINING SECOND LECTURE(1).pptx
ADVANCED DATA WAREHOUSE AND DATA MINING SECOND LECTURE(1).pptx
MrNdlela
?
Apurv Gupta, BCA ,Final year , Dezyne E'cole College
 Apurv Gupta, BCA ,Final year , Dezyne E'cole College Apurv Gupta, BCA ,Final year , Dezyne E'cole College
Apurv Gupta, BCA ,Final year , Dezyne E'cole College
dezyneecole
?
Divyansh Mehta,BCA Final Year 2015 ,Dezyne E'cole College
Divyansh Mehta,BCA Final Year 2015 ,Dezyne E'cole CollegeDivyansh Mehta,BCA Final Year 2015 ,Dezyne E'cole College
Divyansh Mehta,BCA Final Year 2015 ,Dezyne E'cole College
dezyneecole
?
Day1_Structured Query Language2_To understand.ppt
Day1_Structured Query Language2_To understand.pptDay1_Structured Query Language2_To understand.ppt
Day1_Structured Query Language2_To understand.ppt
consravs
?
CS4700 Database Management Systems.docx
CS4700 Database Management Systems.docxCS4700 Database Management Systems.docx
CS4700 Database Management Systems.docx
write31
?
Les02 (restricting and sorting data)
Les02 (restricting and sorting data)Les02 (restricting and sorting data)
Les02 (restricting and sorting data)
Achmad Solichin
?
Data Exploration with Apache Drill: Day 2
Data Exploration with Apache Drill: Day 2Data Exploration with Apache Drill: Day 2
Data Exploration with Apache Drill: Day 2
Charles Givre
?
Les02
Les02Les02
Les02
Sudharsan S
?
Sql task answers
Sql task answersSql task answers
Sql task answers
Nawaz Sk
?
Complex Queries using MYSQL00123211.pptx
Complex Queries using MYSQL00123211.pptxComplex Queries using MYSQL00123211.pptx
Complex Queries using MYSQL00123211.pptx
metriohanzel
?
Md
MdMd
Md
nanaJenglot
?
Vishwajeet Sikhwal ,BCA,Final Year 2015
Vishwajeet Sikhwal ,BCA,Final Year 2015Vishwajeet Sikhwal ,BCA,Final Year 2015
Vishwajeet Sikhwal ,BCA,Final Year 2015
dezyneecole
?
Sql Queries
Sql QueriesSql Queries
Sql Queries
User1test
?
Les02
Les02Les02
Les02
Vijay Kumar
?
Unit 3-Select Options and Aggregate Functions in SQL (1).pptx
Unit 3-Select Options and Aggregate Functions in SQL (1).pptxUnit 3-Select Options and Aggregate Functions in SQL (1).pptx
Unit 3-Select Options and Aggregate Functions in SQL (1).pptx
HAMEEDHUSSAINBU21CSE
?
Ravi querys 425
Ravi querys  425Ravi querys  425
Ravi querys 425
Sorakayala Ashok
?
Write a banking program that simulates the operation of your local ba.docx
 Write a banking program that simulates the operation of your local ba.docx Write a banking program that simulates the operation of your local ba.docx
Write a banking program that simulates the operation of your local ba.docx
ajoy21
?
SQL Top 10 Interview QnA By Rishabh Mishra in Hindi.pdf
SQL Top 10 Interview QnA By Rishabh Mishra in Hindi.pdfSQL Top 10 Interview QnA By Rishabh Mishra in Hindi.pdf
SQL Top 10 Interview QnA By Rishabh Mishra in Hindi.pdf
SudhanshuPandey222889
?
Oracle OCP 1Z0-007Ìâ¿â
Oracle OCP 1Z0-007Ìâ¿âOracle OCP 1Z0-007Ìâ¿â
Oracle OCP 1Z0-007Ìâ¿â
renguzi
?
ADVANCED DATA WAREHOUSE AND DATA MINING SECOND LECTURE(1).pptx
ADVANCED DATA WAREHOUSE AND DATA MINING SECOND LECTURE(1).pptxADVANCED DATA WAREHOUSE AND DATA MINING SECOND LECTURE(1).pptx
ADVANCED DATA WAREHOUSE AND DATA MINING SECOND LECTURE(1).pptx
MrNdlela
?
Apurv Gupta, BCA ,Final year , Dezyne E'cole College
 Apurv Gupta, BCA ,Final year , Dezyne E'cole College Apurv Gupta, BCA ,Final year , Dezyne E'cole College
Apurv Gupta, BCA ,Final year , Dezyne E'cole College
dezyneecole
?
Divyansh Mehta,BCA Final Year 2015 ,Dezyne E'cole College
Divyansh Mehta,BCA Final Year 2015 ,Dezyne E'cole CollegeDivyansh Mehta,BCA Final Year 2015 ,Dezyne E'cole College
Divyansh Mehta,BCA Final Year 2015 ,Dezyne E'cole College
dezyneecole
?
Day1_Structured Query Language2_To understand.ppt
Day1_Structured Query Language2_To understand.pptDay1_Structured Query Language2_To understand.ppt
Day1_Structured Query Language2_To understand.ppt
consravs
?
CS4700 Database Management Systems.docx
CS4700 Database Management Systems.docxCS4700 Database Management Systems.docx
CS4700 Database Management Systems.docx
write31
?
Les02 (restricting and sorting data)
Les02 (restricting and sorting data)Les02 (restricting and sorting data)
Les02 (restricting and sorting data)
Achmad Solichin
?
Data Exploration with Apache Drill: Day 2
Data Exploration with Apache Drill: Day 2Data Exploration with Apache Drill: Day 2
Data Exploration with Apache Drill: Day 2
Charles Givre
?
Sql task answers
Sql task answersSql task answers
Sql task answers
Nawaz Sk
?
Complex Queries using MYSQL00123211.pptx
Complex Queries using MYSQL00123211.pptxComplex Queries using MYSQL00123211.pptx
Complex Queries using MYSQL00123211.pptx
metriohanzel
?
Vishwajeet Sikhwal ,BCA,Final Year 2015
Vishwajeet Sikhwal ,BCA,Final Year 2015Vishwajeet Sikhwal ,BCA,Final Year 2015
Vishwajeet Sikhwal ,BCA,Final Year 2015
dezyneecole
?
Unit 3-Select Options and Aggregate Functions in SQL (1).pptx
Unit 3-Select Options and Aggregate Functions in SQL (1).pptxUnit 3-Select Options and Aggregate Functions in SQL (1).pptx
Unit 3-Select Options and Aggregate Functions in SQL (1).pptx
HAMEEDHUSSAINBU21CSE
?
Write a banking program that simulates the operation of your local ba.docx
 Write a banking program that simulates the operation of your local ba.docx Write a banking program that simulates the operation of your local ba.docx
Write a banking program that simulates the operation of your local ba.docx
ajoy21
?

More from Sreedhar Chowdam (20)

DBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operationsDBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operations
Sreedhar Chowdam
?
Database management systems Lecture Notes
Database management systems Lecture NotesDatabase management systems Lecture Notes
Database management systems Lecture Notes
Sreedhar Chowdam
?
Advanced Data Structures & Algorithm Analysi
Advanced Data Structures & Algorithm AnalysiAdvanced Data Structures & Algorithm Analysi
Advanced Data Structures & Algorithm Analysi
Sreedhar Chowdam
?
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Sreedhar Chowdam
?
Design and Analysis of Algorithms Lecture Notes
Design and Analysis of Algorithms Lecture NotesDesign and Analysis of Algorithms Lecture Notes
Design and Analysis of Algorithms Lecture Notes
Sreedhar Chowdam
?
Design and Analysis of Algorithms (Knapsack Problem)
Design and Analysis of Algorithms (Knapsack Problem)Design and Analysis of Algorithms (Knapsack Problem)
Design and Analysis of Algorithms (Knapsack Problem)
Sreedhar Chowdam
?
DCCN Network Layer congestion control TCP
DCCN Network Layer congestion control TCPDCCN Network Layer congestion control TCP
DCCN Network Layer congestion control TCP
Sreedhar Chowdam
?
Data Communication and Computer Networks
Data Communication and Computer NetworksData Communication and Computer Networks
Data Communication and Computer Networks
Sreedhar Chowdam
?
DCCN Unit 1.pdf
DCCN Unit 1.pdfDCCN Unit 1.pdf
DCCN Unit 1.pdf
Sreedhar Chowdam
?
Data Communication & Computer Networks
Data Communication & Computer NetworksData Communication & Computer Networks
Data Communication & Computer Networks
Sreedhar Chowdam
?
PPS Notes Unit 5.pdf
PPS Notes Unit 5.pdfPPS Notes Unit 5.pdf
PPS Notes Unit 5.pdf
Sreedhar Chowdam
?
PPS Arrays Matrix operations
PPS Arrays Matrix operationsPPS Arrays Matrix operations
PPS Arrays Matrix operations
Sreedhar Chowdam
?
Programming for Problem Solving
Programming for Problem SolvingProgramming for Problem Solving
Programming for Problem Solving
Sreedhar Chowdam
?
Big Data Analytics Part2
Big Data Analytics Part2Big Data Analytics Part2
Big Data Analytics Part2
Sreedhar Chowdam
?
Python Programming: Lists, Modules, Exceptions
Python Programming: Lists, Modules, ExceptionsPython Programming: Lists, Modules, Exceptions
Python Programming: Lists, Modules, Exceptions
Sreedhar Chowdam
?
Python Programming by Dr. C. Sreedhar.pdf
Python Programming by Dr. C. Sreedhar.pdfPython Programming by Dr. C. Sreedhar.pdf
Python Programming by Dr. C. Sreedhar.pdf
Sreedhar Chowdam
?
Python Programming Strings
Python Programming StringsPython Programming Strings
Python Programming Strings
Sreedhar Chowdam
?
Python Programming
Python Programming Python Programming
Python Programming
Sreedhar Chowdam
?
Python Programming
Python ProgrammingPython Programming
Python Programming
Sreedhar Chowdam
?
C Recursion, Pointers, Dynamic memory management
C Recursion, Pointers, Dynamic memory managementC Recursion, Pointers, Dynamic memory management
C Recursion, Pointers, Dynamic memory management
Sreedhar Chowdam
?
DBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operationsDBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operations
Sreedhar Chowdam
?
Database management systems Lecture Notes
Database management systems Lecture NotesDatabase management systems Lecture Notes
Database management systems Lecture Notes
Sreedhar Chowdam
?
Advanced Data Structures & Algorithm Analysi
Advanced Data Structures & Algorithm AnalysiAdvanced Data Structures & Algorithm Analysi
Advanced Data Structures & Algorithm Analysi
Sreedhar Chowdam
?
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Sreedhar Chowdam
?
Design and Analysis of Algorithms Lecture Notes
Design and Analysis of Algorithms Lecture NotesDesign and Analysis of Algorithms Lecture Notes
Design and Analysis of Algorithms Lecture Notes
Sreedhar Chowdam
?
Design and Analysis of Algorithms (Knapsack Problem)
Design and Analysis of Algorithms (Knapsack Problem)Design and Analysis of Algorithms (Knapsack Problem)
Design and Analysis of Algorithms (Knapsack Problem)
Sreedhar Chowdam
?
DCCN Network Layer congestion control TCP
DCCN Network Layer congestion control TCPDCCN Network Layer congestion control TCP
DCCN Network Layer congestion control TCP
Sreedhar Chowdam
?
Data Communication and Computer Networks
Data Communication and Computer NetworksData Communication and Computer Networks
Data Communication and Computer Networks
Sreedhar Chowdam
?
Data Communication & Computer Networks
Data Communication & Computer NetworksData Communication & Computer Networks
Data Communication & Computer Networks
Sreedhar Chowdam
?
Programming for Problem Solving
Programming for Problem SolvingProgramming for Problem Solving
Programming for Problem Solving
Sreedhar Chowdam
?
Python Programming: Lists, Modules, Exceptions
Python Programming: Lists, Modules, ExceptionsPython Programming: Lists, Modules, Exceptions
Python Programming: Lists, Modules, Exceptions
Sreedhar Chowdam
?
Python Programming by Dr. C. Sreedhar.pdf
Python Programming by Dr. C. Sreedhar.pdfPython Programming by Dr. C. Sreedhar.pdf
Python Programming by Dr. C. Sreedhar.pdf
Sreedhar Chowdam
?
C Recursion, Pointers, Dynamic memory management
C Recursion, Pointers, Dynamic memory managementC Recursion, Pointers, Dynamic memory management
C Recursion, Pointers, Dynamic memory management
Sreedhar Chowdam
?

Recently uploaded (20)

UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptxUHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
ariomthermal2031
?
e-health to improve the effectiveness of the Healthcare system
e-health to improve the  effectiveness of the Healthcare systeme-health to improve the  effectiveness of the Healthcare system
e-health to improve the effectiveness of the Healthcare system
Dr INBAMALAR T M
?
Telehealth technology ¨C A new horizon in health care
Telehealth technology ¨C A new horizon in health careTelehealth technology ¨C A new horizon in health care
Telehealth technology ¨C A new horizon in health care
Dr INBAMALAR T M
?
CCNA_Product_OverviewCCNA_Productsa.pptx
CCNA_Product_OverviewCCNA_Productsa.pptxCCNA_Product_OverviewCCNA_Productsa.pptx
CCNA_Product_OverviewCCNA_Productsa.pptx
UdayakumarAllimuthu
?
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
QualityManager48
?
Brown Vintage Minimalist Animated Artist Portfolio Presentation.pptx
Brown Vintage Minimalist Animated Artist Portfolio Presentation.pptxBrown Vintage Minimalist Animated Artist Portfolio Presentation.pptx
Brown Vintage Minimalist Animated Artist Portfolio Presentation.pptx
shafieqadwasyazanee
?
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksnsRES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
lakshmirajanna1983
?
Artificial-Intelligence-in-Cybersecurity.pptx
Artificial-Intelligence-in-Cybersecurity.pptxArtificial-Intelligence-in-Cybersecurity.pptx
Artificial-Intelligence-in-Cybersecurity.pptx
Vigneshwarar3
?
Data+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdfData+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdf
Nguy?n H?i
?
pptforclass10kkkkkkkclasseee2eewsw10scienve
pptforclass10kkkkkkkclasseee2eewsw10scienvepptforclass10kkkkkkkclasseee2eewsw10scienve
pptforclass10kkkkkkkclasseee2eewsw10scienve
jeevasreemurali
?
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascioKtor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
infogdgmi
?
PLANT CELL REACTORS presenation PTC amity
PLANT CELL REACTORS presenation PTC amityPLANT CELL REACTORS presenation PTC amity
PLANT CELL REACTORS presenation PTC amity
UrjaMoon
?
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptxUHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
ariomthermal2031
?
UHV UNIT-I INTRODUCTION TO VALUE EDUCATION .pptx
UHV UNIT-I INTRODUCTION TO VALUE EDUCATION  .pptxUHV UNIT-I INTRODUCTION TO VALUE EDUCATION  .pptx
UHV UNIT-I INTRODUCTION TO VALUE EDUCATION .pptx
ariomthermal2031
?
wind energy types of turbines and advantages
wind energy types of turbines and advantageswind energy types of turbines and advantages
wind energy types of turbines and advantages
MahmudHalef
?
Using 3D CAD in FIRST Tech Challenge - Fusion 360
Using 3D CAD in FIRST Tech Challenge - Fusion 360Using 3D CAD in FIRST Tech Challenge - Fusion 360
Using 3D CAD in FIRST Tech Challenge - Fusion 360
FTC Team 23014
?
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Ignacio J. J. Palma Carazo
?
UHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptx
UHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptxUHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptx
UHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptx
ariomthermal2031
?
Production Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptxProduction Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptx
VirajPasare
?
Call for Papers - 6th International Conference on Big Data and Machine Learni...
Call for Papers - 6th International Conference on Big Data and Machine Learni...Call for Papers - 6th International Conference on Big Data and Machine Learni...
Call for Papers - 6th International Conference on Big Data and Machine Learni...
IJDKP
?
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptxUHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
ariomthermal2031
?
e-health to improve the effectiveness of the Healthcare system
e-health to improve the  effectiveness of the Healthcare systeme-health to improve the  effectiveness of the Healthcare system
e-health to improve the effectiveness of the Healthcare system
Dr INBAMALAR T M
?
Telehealth technology ¨C A new horizon in health care
Telehealth technology ¨C A new horizon in health careTelehealth technology ¨C A new horizon in health care
Telehealth technology ¨C A new horizon in health care
Dr INBAMALAR T M
?
CCNA_Product_OverviewCCNA_Productsa.pptx
CCNA_Product_OverviewCCNA_Productsa.pptxCCNA_Product_OverviewCCNA_Productsa.pptx
CCNA_Product_OverviewCCNA_Productsa.pptx
UdayakumarAllimuthu
?
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
QualityManager48
?
Brown Vintage Minimalist Animated Artist Portfolio Presentation.pptx
Brown Vintage Minimalist Animated Artist Portfolio Presentation.pptxBrown Vintage Minimalist Animated Artist Portfolio Presentation.pptx
Brown Vintage Minimalist Animated Artist Portfolio Presentation.pptx
shafieqadwasyazanee
?
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksnsRES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
RES REVIEW 21qqqqqqqqqqqqqqqq1sbsjsnskdndndksns
lakshmirajanna1983
?
Artificial-Intelligence-in-Cybersecurity.pptx
Artificial-Intelligence-in-Cybersecurity.pptxArtificial-Intelligence-in-Cybersecurity.pptx
Artificial-Intelligence-in-Cybersecurity.pptx
Vigneshwarar3
?
Data+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdfData+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdf
Nguy?n H?i
?
pptforclass10kkkkkkkclasseee2eewsw10scienve
pptforclass10kkkkkkkclasseee2eewsw10scienvepptforclass10kkkkkkkclasseee2eewsw10scienve
pptforclass10kkkkkkkclasseee2eewsw10scienve
jeevasreemurali
?
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascioKtor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
infogdgmi
?
PLANT CELL REACTORS presenation PTC amity
PLANT CELL REACTORS presenation PTC amityPLANT CELL REACTORS presenation PTC amity
PLANT CELL REACTORS presenation PTC amity
UrjaMoon
?
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptxUHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
ariomthermal2031
?
UHV UNIT-I INTRODUCTION TO VALUE EDUCATION .pptx
UHV UNIT-I INTRODUCTION TO VALUE EDUCATION  .pptxUHV UNIT-I INTRODUCTION TO VALUE EDUCATION  .pptx
UHV UNIT-I INTRODUCTION TO VALUE EDUCATION .pptx
ariomthermal2031
?
wind energy types of turbines and advantages
wind energy types of turbines and advantageswind energy types of turbines and advantages
wind energy types of turbines and advantages
MahmudHalef
?
Using 3D CAD in FIRST Tech Challenge - Fusion 360
Using 3D CAD in FIRST Tech Challenge - Fusion 360Using 3D CAD in FIRST Tech Challenge - Fusion 360
Using 3D CAD in FIRST Tech Challenge - Fusion 360
FTC Team 23014
?
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Ignacio J. J. Palma Carazo
?
UHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptx
UHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptxUHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptx
UHV unit-2UNIT - II HARMONY IN THE HUMAN BEING.pptx
ariomthermal2031
?
Production Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptxProduction Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptx
VirajPasare
?
Call for Papers - 6th International Conference on Big Data and Machine Learni...
Call for Papers - 6th International Conference on Big Data and Machine Learni...Call for Papers - 6th International Conference on Big Data and Machine Learni...
Call for Papers - 6th International Conference on Big Data and Machine Learni...
IJDKP
?

DBMS Notes selection projection aggregate

  • 2. 2 SELECTION & PROJECTION Retrieve all columns and rows from the Student table. Retrieve only specific columns from the Student table. Retrieve students who are in the specific department. Retrieve all students sorted by age in ascending order. SELECT * FROM student; SELECT student_id, first_name, last_name FROM student; SELECT * FROM student WHERE department = 'Computer Science'; SELECT * FROM student ORDER BY age ASC;
  • 3. Retrieve students sorted by (ORDER BY) grade in descending order Retrieve only the first 4 rows (ROWNUM) from the table Retrieve students who are in the Computer Science department AND have a grade of A Retrieve students whose first_name starts with C (LIKE ¡¯C%¡¯) Retrieve students who are IN either Physics or Chemistry departments SELECT * FROM student ORDER BY grade DESC; select * from student where ROWNUM <= 4 SELECT * FROM student WHERE department = 'Computer Science' AND grade = 'A'; SELECT * FROM student WHERE first_name LIKE 'C%'; SELECT * FROM student WHERE department IN ('Physics', 'Chemistry');
  • 4. Retrieve students whose age is BETWEEN 21 AND23 Retrieve the total number of students (COUNT) Retrieve the average age of students (AVG) Retrieve the highest age in the table (MAX) Retrieve the number (COUNT) of students in each department, GROUP BY Department SELECT * FROM student WHERE age BETWEEN 21 AND 23; SELECT COUNT(*) AS total_students FROM student; SELECT AVG(age) AS average_age FROM student; SELECT MAX(age) AS highest_age FROM student; SELECT department, COUNT(*) AS student_count FROM student GROUP BY department;
  • 5. Retrieve the number (COUNT) of students in each department, GROUP BY Department SELECT department, COUNT(*) AS student_count FROM student GROUP BY department;
  • 6. Retrieve departments with more than 2 students. SELECT department, COUNT(*) AS student_count FROM student GROUP BY department HAVING COUNT(*) > 2;
  • 7. Retrieve unique (DISTINCT) departments from the student table. SELECT DISTINCT department FROM student;
  • 8. Retrieve students who are older than the average age SELECT * FROM student WHERE age > (SELECT AVG(age) FROM student);
  • 9. Retrieve students from two departments and combine results. SELECT * FROM student WHERE department = 'Computer Science' UNION SELECT * FROM student WHERE department = 'Mathematics';
  • 10. Retrieve students with a custom column indicating if they are a senior (age >= 21) or junior (age < 21) as status , order by status. (CASE END) SELECT student_id, first_name, last_name, age, CASE WHEN age >= 21 THEN 'Senior' ELSE 'Junior' END AS student_status FROM student ORDER BY student_status;
  • 11. Retrieve students who do not have a grade assigned. SELECT * FROM student WHERE grade IS NULL;
  • 12. 12 SQL: Arithmetic and Logical Operations ? Arithmetic Operations: ? Multiplication (*), ? Addition (+), ? Subtraction (-), ? Division (/) ? Logical Operations: ? AND, ? OR, ? NOT
  • 13. 13 SQL: Arithmetic and Logical Operations CREATE TABLE employee ( employee_id INT PRIMARY KEY, first_name VARCHAR2(50), last_name VARCHAR2(50), email VARCHAR2(100), department VARCHAR(50), hire_date DATE, salary DECIMAL(10, 2) ); INSERT INTO employee (employee_id, first_name, last_name, email, department, hire_date, salary) VALUES (1, 'John', 'Doe', 'john.doe@example.com', 'Sales', '15-01-2020', 55000.00), (2, 'Jane', 'Smith', 'jane.smith@example.com', 'Engineering', '16-01- 2020', 75000.00), (3, 'Sam', 'Brown', 'sam.brown@example.com', 'HR', '17-01-2020', 48000.00), (4, 'Emily', 'Jones', 'emily.jones@example.com', 'Marketing', '15-01- 2021', 60000.00), (5, 'Michael', 'Taylor', 'michael.taylor@example.com', 'Sales', '16-01- 2021', 53000.00), (6, 'Linda', 'Lee', 'linda.lee@example.com', 'Engineering', '16-01- 2021', 78000.00), (7, 'Chris', 'Davis', 'chris.davis@example.com', 'Finance', '17-01-2021', 90000.00), (8, 'Anna', 'Martinez', 'anna.martinez@example.com', 'HR', '15-01- 2022', 52000.00), (9, 'David', 'Wilson', 'david.wilson@example.com', 'Marketing', '16- 01-2022', 62000.00), (10, 'Sophia', 'Miller', 'sophia.miller@example.com', 'Finance', '17-01- 2022', 95000.00);
  • 14. Calculate Annual Salary of the employees SELECT first_name, last_name, salary, (salary * 12) AS annual_salary FROM employee; Arithmetic Operation Multiplication (*)
  • 15. Calculate the salary after applying the bonus (10%) SELECT first_name, last_name, salary, (salary + (salary * 0.10)) AS salary_after_bonus FROM employee; Arithmetic Operation Addition (+)
  • 16. Calculate the salary after deductions (5%) SELECT first_name, last_name, salary, (salary - (salary * 0.05)) AS salary_after_deduction FROM employee; Arithmetic Operation Subtraction (-)
  • 17. Calculate the salary of the employees per day SELECT first_name, last_name, salary, ROUND((salary / 30),2) AS salary_per_day FROM employee; Arithmetic Operation Division (/)
  • 18. Find employees who work either in the 'Sales' or 'Marketing' department SELECT first_name, last_name, department FROM employee WHERE department = 'Sales' OR department = 'Marketing'; Logical Operation OR
  • 19. Find employees who work in the 'Engineering' department and have a salary greater than 60,000 SELECT first_name, last_name, salary, department FROM employee WHERE salary > 60000 AND department = 'Engineering'; Logical Operation AND
  • 20. Find employees who do not work in the 'HR' department SELECT first_name, last_name, department FROM employee WHERE NOT department = 'HR'; Logical Operation NOT
  • 22. 22 Lab Program 6 ? Develop a program that includes the features NESTED IF, CASE. The program can be extended using the NULLIF and COALESCE functions. NESTED IF CASE NULLIF COALESCE
  • 23. 23 Lab Program 6 ? Accept the marks and display the grade as per the following ? If Marks are >= 90, then Grade is A. ? ElsIf Marks are >= to 80, then Check if Marks >= 85, then Grade is B+, else Grade is B. ? ElsIf Marks are >= to 70, then Grade is C, ? else Grade is D
  • 24. Lab Program 6 DECLARE BEGIN END / v_grade CHAR(2); v_marks NUMBER; v_marks := &new_marks; IF v_marks >= 90 THEN v_grade := 'A'; ELSIF v_marks >= 80 THEN IF v_marks >= 85 THEN v_grade := 'B+'; ELSE v_grade := 'B'; END IF; ELSIF v_marks >= 70 THEN v_grade := 'C'; ELSE v_grade := 'D'; ENDIF DBMS_OUTPUT.PUT_LINE('The grade is: ' || v_grade); NESTED IF
  • 25. 25 Lab Program 6: CASE ? Accept the Grade and display as per the following ? A ¨C Outstanding ? B ¨C Excellent ? C ¨C Very Good ? D ¨C Average ? F - Poor
  • 26. Lab Program 6: CASE DECLARE BEGIN END / grd CHAR(1); grd := '&new_grd'; CASE END CASE; grd WHEN 'A' THEN dbms_output.Put_line('Your Grade is: Outstanding'); WHEN 'B' THEN dbms_output.Put_line('Your Grade is: Excellent'); WHEN 'C' THEN dbms_output.Put_line('Your Grade is: Very Good'); WHEN 'D' THEN dbms_output. Put_line('Your Grade is: Average'); WHEN 'F' THEN dbms_output.Put_line('Your Grade is: Poor'); ELSE dbms_output.Put_line('No such grade in the list.');
  • 27. Lab Program 6: NULLIF, COALESCE SQL COALESCE function is used to handle NULL values in a database query by returning the first non-NULL value from a list of expressions or column values SQL COALESCE function deals with NULL values in a query by substituting them with a default value or selecting the first non-NULL value from a list of option NULLIF compares expr1 and expr2. If they are equal, then the function returns null. If they are not equal, then the function returns expr1
  • 28. CREATE TABLE employee ( employee_id INT PRIMARY KEY, first_name VARCHAR2(50), last_name VARCHAR2(50), salary DECIMAL(10, 2), department VARCHAR2(50), hire_date DATE ); Lab Program 6: NULLIF, COALESCE INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (1, 'Ram', 'Charan', 50000, 'HR', TO_DATE('2020-01-15', 'YYYY-MM-DD')); INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (2, 'Pawan', 'Smith', 16000, 'Finance', TO_DATE('2018-03-10', 'YYYY-MM-DD')); INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (3, 'Ram', 'Shyam', 7000, '', TO_DATE('2025-02-09', 'YYYY-MM-DD')); INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (4, 'Bob', 'Brown', 8000, 'HR', TO_DATE('2021-11-05', 'YYYY-MM-DD')); INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (5, 'Charlie', 'Davis', 9000, 'Finance', TO_DATE('2017-02-17', 'YYYY-MM-DD')); INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (6, 'David', 'Garcia', 10000, 'Engineering', TO_DATE('2025-02-09', 'YYYY-MM-DD')); INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (7, 'Emma', 'Martinez', 5500, 'Marketing', TO_DATE('09-02-2025', 'DD-MM-YY')); INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (8, 'Frank', 'Hernandez', 6500, 'HR', TO_DATE('2022-01-10', 'YYYY-MM-DD')); INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (9, 'Grace', 'Lopez', 7500, 'Finance', TO_DATE('2019-12-05', 'YYYY-MM-DD')); INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (10, 'Brahmanandam', 'Garu', 9500, '', TO_DATE('2016-07-30', 'YYYY-MM-DD')); INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (11, 'Ram', 'Pay','' ,'Marketing', TO_DATE('2019-07-30', 'YYYY-MM-DD')); INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (12, 'Hare', 'Krishna', 19500, 'HR', NULL); INSERT INTO employee (employee_id, first_name, last_name, salary, department, hire_date) VALUES (13, 'Rama', 'Krishna','','Sales', TO_DATE('2021-07-30', 'YYYY-MM-DD'));
  • 29. Lab Program 6: COALESCE Replace all NULL values in the department column with default department ie., CSE using COALESCE SELECT employee_id, department, COALESCE(department,'CSE') AS UpdatedDept FROM employee; Replace all NULL values in the salary column with 1000 using COALESCE SELECT employee_id, salary, COALESCE(salary,1000) AS UpdatedSal FROM employee;
  • 30. Lab Program 6: NULLIF If salary is equal to 50000 then assign with NULL SELECT employee_id, salary, NULLIF(salary,50000) AS UpdatedSal FROM employee; Marketing Dept is closed; If department is Marketing, then assign with NULL SELECT employee_id, department, NULLIF(department,¡¯Marketing¡¯) AS UpdatedDept FROM employee;
  • 31. 31 Unit III ? SQL: Basic SQL querying (select and project) using where clause, arithmetic & logical operations, ? SQL functions (Date and Time, Numeric, String conversion). ? Creating tables with relationship, implementation of key and integrity constraints, grouping, aggregation, ordering, ?nested queries, sub queries, ?implementation of different types of joins, ?relational set operations