This document provides an overview of SQL Server concepts and techniques including:
1. Creating and modifying databases, tables, views, constraints, and data types.
2. Performing queries using SELECT statements, joins, subqueries, CTEs, aggregate functions, and ranking functions.
3. Inserting, updating, and deleting data.
4. Implementing stored procedures, user-defined functions, triggers, and error handling.
The document includes examples for each concept to demonstrate how to implement them in SQL Server.
This document provides an overview of basic SQL concepts and functions using Oracle SQL. It covers topics such as SELECT statements, WHERE clauses, joins, functions, subqueries, and data manipulation using INSERT, UPDATE and DELETE statements. The document is a handout for a Database Management Systems course, intended to teach students the fundamentals of Oracle SQL.
The document contains examples of PL/SQL blocks and procedures to perform various operations like checking if a year is a leap year, calculating employee bonuses based on salary, retrieving employee data using cursors, updating job titles in a package, and validating department IDs when adding new employees. It demonstrates how to write PL/SQL code to query and manipulate database tables, handle exceptions, define functions and procedures, and group related code into packages.
This document contains questions and answers related to Oracle SQL and PL/SQL. It begins with 29 multiple choice questions about SQL queries, functions, joins, views, constraints and other database concepts. The questions are numbered and include possible answer choices with the correct answers marked in red.
Here are the steps to solve this problem:
1. Join the Employee and Department tables on the DEPTNO column to get the employee name, job, salary and department location.
2. Join the resulting table with the SalGrade table on the salary range (between losal and hisal) to get the grade.
3. Run a count on the job to get the count of employees for each job.
So the query would be:
Select job, count(*)
From Employee join department
On deptno = department.deptno
Join salgrade
On sal between losal and hisal
Group by job;
This will give the count of employees for each
The document provides information about Oracle 1Z0-007 exam preparation materials and free exam questions for various IT certification exams. It guarantees users can pass certification exams in 10-12 hours by studying the provided guides containing actual exam questions and answers. It also lists several free exam guides available for download.
This document discusses different types of joins in SQL, including:
1) Equijoins to retrieve records that match between two tables using column equality.
2) Nonequijoins using operators like BETWEEN to join on non-equal columns.
3) Outer joins to return both matching and non-matching record results from the left or right tables.
4) Self-joins to join a table to itself.
5) Cross joins to generate the Cartesian product between two tables without a join condition.
Apurv Gupta, BCA ,Final year , Dezyne E'cole Collegedezyneecole
?
1. The document is a work report submitted by Apurv Gupta, a 3rd year BCA student, as a partial fulfillment for his degree.
2. It includes assessments performed on Oracle 10g relating to creating tables, inserting data, querying data using select statements, joining tables, and using nested and correlated subqueries.
3. The assessments cover creating employee, department, and salary grade tables; performing select queries to retrieve data from the tables including filtering, sorting, aggregation; and joining the tables to reduce data redundancy.
The document discusses database normalization and implementation of a database for a university. It introduces tables for students, courses, instructors and departments. It normalizes the tables to third normal form and defines primary and foreign keys. It also implements views, triggers and sample queries on the database tables.
This document discusses how to limit the rows returned from a query using a WHERE clause, comparison operators, logical operators, and null conditions. It also explains how to sort the rows returned using an ORDER BY clause. Finally, it covers the use of substitution variables in SQL*Plus to make queries more flexible by prompting for values.
Data Exploration with Apache Drill: Day 2Charles Givre
?
Study after study shows that data scientists and analysts spend between 50% and 90% of their time preparing their data for analysis. Using Drill, you can dramatically reduce the time it takes to go from raw data to insight. This course will show you how.
The course material for this presentation are available at https://github.com/cgivre/data-exploration-with-apache-drill
This document discusses restricting and sorting data in SQL. It covers:
1. Using the WHERE clause to limit rows returned by specifying conditions like column comparisons, BETWEEN, IN, LIKE, and IS NULL.
2. Applying logical operators LIKE AND, OR, and NOT in WHERE clauses.
3. Using the ORDER BY clause to sort rows by one or more columns in ascending or descending order.
4. Leveraging substitution variables in SQL*Plus like & and && to make queries more flexible by prompting for values.
The document describes the schema used for tracking human resource records in a company. It includes tables for employees, jobs, locations, departments, and other entity types. Employees have attributes like ID number, email, job code, salary, manager, and more. Jobs have attributes like ID code, title, and salary range. Locations include addresses and departments are assigned to locations. Additional tables track country, region, and currency details.
Complex Queries using MYSQL00123211.pptxmetriohanzel
?
The document describes creating sample tables and inserting demo data for SQL exercises. It includes commands to create DEPARTMENT and EMPLOYEE tables, alter their structures, and insert sample records. It then provides 5 complex SQL queries as examples for a database engineer, such as finding departments by location, employees by department, average salary by department, and the top 10 highest-paid employees.
The document describes the creation of several database tables - student, faculty, course, grade, presentation, and grade_scale. It inserts sample data into the student, faculty, course, and grade tables. It also modifies some of the table structures, such as increasing the size of the address field in student and adding primary keys to course_id in grade and fac_id in faculty to prevent redundant data.
The document contains the schema and sample data for tables related to employees, departments, jobs, and locations. It then lists over 70 SQL queries on this data including simple queries with WHERE, ORDER BY, GROUP BY, JOINs, and subqueries. The queries retrieve and filter data from the tables in various ways like getting employee details, departments, salaries by job or department, and joining tables to show relationships.
This document discusses restricting and sorting data in SQL queries. It covers limiting rows using the WHERE clause with comparison, BETWEEN, IN, LIKE, and NULL conditions. Logical operators like AND, OR, and NOT are also covered. The ORDER BY clause is discussed for sorting query results in ascending or descending order by one or multiple columns. Examples are provided for each concept to illustrate their proper usage in SELECT statements.
Unit 3-Select Options and Aggregate Functions in SQL (1).pptxHAMEEDHUSSAINBU21CSE
?
Select statement is used to fetch data from one or more tables. It can use predicates like WHERE, GROUP BY, HAVING, and ORDER BY. The WHERE clause filters rows based on conditions, GROUP BY organizes rows into groups, HAVING applies conditions to groups, and ORDER BY sorts the results. Aggregate functions like COUNT, SUM, AVG, MAX, MIN perform calculations on multiple rows and return a single value.
This document contains SQL queries and questions related to selecting, filtering, ordering, grouping, joining, and manipulating data in employee and incentives tables. It includes questions on selecting specific columns, filtering by conditions, ordering results, performing string operations and date functions, grouping and aggregating data, different join types, and DML statements for modifying table structures and data.
Write a banking program that simulates the operation of your local ba.docxajoy21
?
The document describes a banking program that simulates basic banking operations. It includes classes like Account, SavingsAccount, CheckingAccount, Customer, Bank, and Transaction. Account has fields like customer, balance, account number, and transaction array. Customer has fields like name, address, age, etc. Bank has an account array to store accounts. The program allows adding accounts, making deposits, withdrawals, and processes transactions.
The document provides information about Oracle 1Z0-007 exam preparation materials and free exam questions for various IT certification exams. It guarantees users can pass certification exams in 10-12 hours by studying the provided guides containing actual exam questions and answers. It also lists several free exam guides available for download.
This document discusses different types of joins in SQL, including:
1) Equijoins to retrieve records that match between two tables using column equality.
2) Nonequijoins using operators like BETWEEN to join on non-equal columns.
3) Outer joins to return both matching and non-matching record results from the left or right tables.
4) Self-joins to join a table to itself.
5) Cross joins to generate the Cartesian product between two tables without a join condition.
Apurv Gupta, BCA ,Final year , Dezyne E'cole Collegedezyneecole
?
1. The document is a work report submitted by Apurv Gupta, a 3rd year BCA student, as a partial fulfillment for his degree.
2. It includes assessments performed on Oracle 10g relating to creating tables, inserting data, querying data using select statements, joining tables, and using nested and correlated subqueries.
3. The assessments cover creating employee, department, and salary grade tables; performing select queries to retrieve data from the tables including filtering, sorting, aggregation; and joining the tables to reduce data redundancy.
The document discusses database normalization and implementation of a database for a university. It introduces tables for students, courses, instructors and departments. It normalizes the tables to third normal form and defines primary and foreign keys. It also implements views, triggers and sample queries on the database tables.
This document discusses how to limit the rows returned from a query using a WHERE clause, comparison operators, logical operators, and null conditions. It also explains how to sort the rows returned using an ORDER BY clause. Finally, it covers the use of substitution variables in SQL*Plus to make queries more flexible by prompting for values.
Data Exploration with Apache Drill: Day 2Charles Givre
?
Study after study shows that data scientists and analysts spend between 50% and 90% of their time preparing their data for analysis. Using Drill, you can dramatically reduce the time it takes to go from raw data to insight. This course will show you how.
The course material for this presentation are available at https://github.com/cgivre/data-exploration-with-apache-drill
This document discusses restricting and sorting data in SQL. It covers:
1. Using the WHERE clause to limit rows returned by specifying conditions like column comparisons, BETWEEN, IN, LIKE, and IS NULL.
2. Applying logical operators LIKE AND, OR, and NOT in WHERE clauses.
3. Using the ORDER BY clause to sort rows by one or more columns in ascending or descending order.
4. Leveraging substitution variables in SQL*Plus like & and && to make queries more flexible by prompting for values.
The document describes the schema used for tracking human resource records in a company. It includes tables for employees, jobs, locations, departments, and other entity types. Employees have attributes like ID number, email, job code, salary, manager, and more. Jobs have attributes like ID code, title, and salary range. Locations include addresses and departments are assigned to locations. Additional tables track country, region, and currency details.
Complex Queries using MYSQL00123211.pptxmetriohanzel
?
The document describes creating sample tables and inserting demo data for SQL exercises. It includes commands to create DEPARTMENT and EMPLOYEE tables, alter their structures, and insert sample records. It then provides 5 complex SQL queries as examples for a database engineer, such as finding departments by location, employees by department, average salary by department, and the top 10 highest-paid employees.
The document describes the creation of several database tables - student, faculty, course, grade, presentation, and grade_scale. It inserts sample data into the student, faculty, course, and grade tables. It also modifies some of the table structures, such as increasing the size of the address field in student and adding primary keys to course_id in grade and fac_id in faculty to prevent redundant data.
The document contains the schema and sample data for tables related to employees, departments, jobs, and locations. It then lists over 70 SQL queries on this data including simple queries with WHERE, ORDER BY, GROUP BY, JOINs, and subqueries. The queries retrieve and filter data from the tables in various ways like getting employee details, departments, salaries by job or department, and joining tables to show relationships.
This document discusses restricting and sorting data in SQL queries. It covers limiting rows using the WHERE clause with comparison, BETWEEN, IN, LIKE, and NULL conditions. Logical operators like AND, OR, and NOT are also covered. The ORDER BY clause is discussed for sorting query results in ascending or descending order by one or multiple columns. Examples are provided for each concept to illustrate their proper usage in SELECT statements.
Unit 3-Select Options and Aggregate Functions in SQL (1).pptxHAMEEDHUSSAINBU21CSE
?
Select statement is used to fetch data from one or more tables. It can use predicates like WHERE, GROUP BY, HAVING, and ORDER BY. The WHERE clause filters rows based on conditions, GROUP BY organizes rows into groups, HAVING applies conditions to groups, and ORDER BY sorts the results. Aggregate functions like COUNT, SUM, AVG, MAX, MIN perform calculations on multiple rows and return a single value.
This document contains SQL queries and questions related to selecting, filtering, ordering, grouping, joining, and manipulating data in employee and incentives tables. It includes questions on selecting specific columns, filtering by conditions, ordering results, performing string operations and date functions, grouping and aggregating data, different join types, and DML statements for modifying table structures and data.
Write a banking program that simulates the operation of your local ba.docxajoy21
?
The document describes a banking program that simulates basic banking operations. It includes classes like Account, SavingsAccount, CheckingAccount, Customer, Bank, and Transaction. Account has fields like customer, balance, account number, and transaction array. Customer has fields like name, address, age, etc. Bank has an account array to store accounts. The program allows adding accounts, making deposits, withdrawals, and processes transactions.
This document discusses algorithms and their analysis. It begins by defining an algorithm and its key characteristics like being finite, definite, and terminating after a finite number of steps. It then discusses designing algorithms to minimize cost and analyzing algorithms to predict their performance. Various algorithm design techniques are covered like divide and conquer, binary search, and its recursive implementation. Asymptotic notations like Big-O, Omega, and Theta are introduced to analyze time and space complexity. Specific algorithms like merge sort, quicksort, and their recursive implementations are explained in detail.
Design and Analysis of Algorithms (Knapsack Problem)Sreedhar Chowdam
?
This document describes the greedy knapsack problem where the goal is to maximize the value of items placed in a knapsack of limited capacity. It provides the values (p) and weights (w) of 6 items, as well as the knapsack capacity (M=13). The value to weight ratios (Pi/Wi) are also listed to help determine the optimal solution of maximizing value within the weight limit.
The document discusses several topics related to computer networks including:
1. The network layer, including design issues like store-and-forward and connection-oriented services. Routing algorithms like shortest path routing and flooding are also discussed.
2. Congestion control principles and policies for preventing congestion in virtual circuits and datagram subnets.
3. Transport layer protocols like TCP and UDP, and how they provide services and manage connections and transmissions.
4. Application layer protocols like DNS for managing domain names and resource records.
The document discusses topics related to data communication and computer networks including digital signals, transmission media, transmission impairments, and the data link layer.
Specifically, it covers:
- Digital signals can represent information using positive and negative voltages. More bits per level allow more information to be sent.
- Transmission impairments like attenuation, distortion, and noise can corrupt signals. Attenuation is addressed using amplifiers and repeaters.
- The data link layer provides error detection using techniques like block coding, error correction codes, CRC codes, and checksums to reliably transmit data despite errors.
This document provides an overview of data communication and computer networks. It discusses key topics such as data representation, data flow, network topologies, categories of networks, protocols and standards. The document specifically describes data communication components, protocols and elements, network criteria and types of topologies including mesh, star, bus and ring. It also defines local, metropolitan and wide area networks and compares their characteristics. Finally, it introduces the OSI reference model and layers.
This document provides an overview of a course on data communication and computer networks. It includes 5 units that cover topics such as introduction to data communication components, network models, physical layer, data link layer, network layer, congestion control, and the transport layer. It also lists 10 experiments related to the course content, such as implementing network commands, cyclic redundancy code, routing algorithms, and domain name servers. The instructor's name and some content that is copied from internet sources is acknowledged.
The document discusses various topics related to structures and unions, files, and error handling in C programming. It includes:
1) Defining structures and unions, passing structures to functions, self-referential structures.
2) Opening, reading, writing, and closing files. Functions for file input/output like fopen, fprintf, fscanf, getc, putc.
3) Error handling functions like feof() and ferror() to check for end of file or errors during file operations.
The document discusses two dimensional arrays in C programming. It explains how to declare, initialize and access 2D arrays. It provides examples of accepting 2D array elements as input and displaying them. It also discusses various matrix operations like addition, multiplication using 2D arrays. Functions to input, multiply and display matrices are demonstrated. Other topics covered include passing 2D arrays to functions, matrix transpose, finding sum of diagonal elements and multi-dimensional arrays. Finally, it briefly explains command line arguments in C.
The document summarizes topics covered in a programming for problem solving (PPS) class, including control structures like if/else statements, loops, and switch cases. Example programs are provided to find the largest of three numbers, determine if a character is a vowel or consonant, and identify the type of triangle based on angle or side lengths. The last example uses nested if/else and switch statements to classify triangles as equilateral, isosceles, right-angled, or scalene depending on the problem constraints.
This document provides an overview of Apache Hive, including its architecture and features. It states that Hive is an open source data warehouse system built on Hadoop that allows users to query large datasets using SQL-like queries. It is used for analyzing structured data and is best suited for batch jobs. The document then discusses Hive's architecture, including its drivers, metastore, and Thrift interface. It also provides examples of built-in functions in Hive for mathematical operations, string manipulation, and more. Finally, it covers Hive commands for DDL, DML, and querying data.
The document discusses various topics related to lists in Python including:
- Lists can store multiple items of similar or different types in a single variable.
- List items can be accessed and modified using indexes.
- List slicing allows accessing elements within a specified index range.
- Built-in functions like len(), max(), min() etc. can be used to perform operations on lists.
- List methods allow adding, removing, and modifying elements in lists.
- Lists can be passed as arguments to functions and returned from functions.
The document provides an overview of a Python programming course taught by Dr. C. Sreedhar. The course covers topics like the history of Python, installing Python, data types, operators, expressions, functions, and more. It includes code examples for basic programs to calculate area and perimeter, check if a number is even or odd, and determine if a number is divisible by 4 and 9. The document contains lecture slides with explanations and syntax for various Python concepts.
This document contains a summary of a class on string methods in Python. It discusses the str class and how to create strings, various string methods like find(), upper(), lower(), split(), indexing strings, formatting strings, comparing strings, and checking string properties. Traversing strings using for and while loops and that strings are immutable in Python are also mentioned.
The document summarizes key concepts in Python programming including decision statements, loops, and functions. It discusses boolean expressions and relational operators used in conditional statements. It also covers different loop constructs like while, for, and nested loops. Finally, it provides examples of defining and using functions, and concepts like local and global scope, default arguments, recursion, and returning values.
The document provides an overview of Unit 1 of a Python programming course taught by Dr. C. Sreedhar. Unit 1 covers introduction to Python including its history, installation, execution, commenting, data types, operators, and writing simple programs. It discusses Python's character set, tokens, core data types, I/O functions, assigning values to variables, and multiple assignments. Operators and expressions such as arithmetic, comparison, logical, and bitwise operators are also covered. Examples of simple Python programs are provided.
C Recursion, Pointers, Dynamic memory managementSreedhar Chowdam
?
The document summarizes key topics related to recursion, pointers, and dynamic memory management in C programming:
Recursion is introduced as a process where a function calls itself repeatedly to solve a problem. Examples of recursive functions like factorial, Fibonacci series, and Towers of Hanoi are provided.
Pointers are defined as variables that store the memory addresses of other variables. Pointer operations like incrementing, decrementing, and arithmetic are described. The use of pointers to pass arguments to functions and access array elements is also demonstrated.
Dynamic memory allocation functions malloc(), calloc(), and realloc() are explained along with examples. These functions allocate and manage memory during run-time in C programs.
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascioinfogdgmi
?
Tra i vari framework backend basati sulla JVM, uno in particolare, con il passare del tempo, ha saputo ritagliarsi il suo spazio: era Ktor (figlio di Kmer).
In questo talk faremo un tour di Ktor,
dalla sua parte backend: Definizioni di Path, Integrazioni, Plugin e build fino al rilascio (e qualche chicca),
fino alla sua controparte client e qualche sua integrazione
Production Planning & Control and Inventory Management.pptxVirajPasare
?
Production Planning and Control : Importance, Objectives and Functions . Inventory Management - Meaning, Types , Objectives, Selective Inventory Control : ABC Analysis
Call for Papers - 6th International Conference on Big Data and Machine Learni...IJDKP
?
6th International Conference on Big Data and Machine Learning (BDML 2025) will act as a major forum for the presentation of innovative ideas, approaches, developments, and research projects in the areas of Big Data and Machine Learning. It will also serve to facilitate the exchange of information between researchers and industry professionals to discuss the latest issues and advancement in the area of Big Data and Machine Learning.
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;
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;
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
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