Skip to main content

SQL Set Operators

SQL Set Operators   Traditional Set Operators: Union Compatibility:     Requirement for the traditional set operators.    Strong requirement.                         - Same number of columns.                         - Each corresponding column is compatible.                         - Positional correspondence.     Apply to similar tables by removing columns first. SQL UNION Example:           Example 1: Retrieve basic data about all university people.                     SELECT FacNo AS PerNo, FacFirstName                                      ...

Identify the following Errors in Queries:

 a. Identify errors in the following SQL statement and label errors with error type. To simplify your work, the statement has only one type of error. Rewrite the statement to remove the error.

SELECT eventrequest.eventno, dateheld, status, estcost

FROM eventrequest, employee, facility, eventplan

WHERE estaudience > 5000

AND eventplan.empno = employee.empno

AND eventrequest.facno = facility.facno

AND facname = 'Football stadium'

AND empname = 'Mary Manager';

CORRECTION:

SELECT DISTINCT eventrequest.eventno, dateheld, status, estcost FROM eventrequest, employee, facility, eventplan

WHERE estaudience > 5000

AND eventplan.empno = employee.empno

AND eventrequest.facno = facility.facno

AND facname = 'Football stadium'

AND empname = 'Mary Manager';

ERROR

Missing join between event-plan and event-request tables. It results in incorrect number of rows.

ERROR TYPE:

Semantic Error.

b. Identify errors in the following SQL statement and label errors with error type. To simplify your work, the statement has only one type of error. Rewrite the statement to remove the error. 

SELECT DISTINCT eventrequest.eventno, dateheld, status, estcost

 FROM eventrequest, eventplan WHERE estaudience > 4000 

AND eventplan.eventno = eventrequest.eventno 

GROUP BY eventrequest.eventno, dateheld, status, estcost;


CORRECTION: 

SELECT DISTINCT eventrequest.eventno, dateheld, status, estcost 

FROM eventrequest, eventplan 

WHERE estaudience > 4000 

AND eventplan.eventno = eventrequest.eventno;


ERROR:

Group by classes are not needed.


ERROR TYPE:

Redundancy error.


c. Identify areas in which the SQL statement has poor coding practices and rewrite the statement to improve the coding practices. You do not need to search for errors.

SELECT eventplan.planno, lineno, resname, numberfld, timestart, timeend

FROM eventrequest, facility, eventplan, eventplanline, resourcetbl

WHERE estaudience = '10000'

AND eventplan.planno = eventplanline.planno

AND eventrequest.facno = facility.facno

AND facname = 'Basketball arena'

AND eventplanline.resno = resourcetbl.resno

AND eventrequest.eventno = eventplan.eventno 

Better Coding:

    SELECT eventplan.planno, lineno, resname, numberfld, timestart, timeend

    FROM eventrequest, facility, eventplan, eventplanline, resourcetbl

    WHERE estaudience = 10000

    AND eventplan.planno = eventplanline.planno

    AND eventrequest.facno = facility.facno

    AND eventplanline.resno = resourcetbl.resno

    AND eventrequest.eventno = eventplan.eventno







Our Official Website : Web Conquerors (https://www.webconquerors.com/) 

Want to get digital services? Contact US

Want to know about our services? Our Services

Comments

Popular posts from this blog

SQL Set Operators

SQL Set Operators   Traditional Set Operators: Union Compatibility:     Requirement for the traditional set operators.    Strong requirement.                         - Same number of columns.                         - Each corresponding column is compatible.                         - Positional correspondence.     Apply to similar tables by removing columns first. SQL UNION Example:           Example 1: Retrieve basic data about all university people.                     SELECT FacNo AS PerNo, FacFirstName                                      ...

Query Formulation

Query Formulation   Query Formulation Process: Critical Questions: What tables?           - Columns in result.          - Conditions to test (including join conditions). How to combine the tables?           - Usually join of PK to FK. More complex ways to combine Individual rows or groups of rows?           - Aggregate functions in result.          - Conditions with aggregate functions. University Database Diagram: Summarization and Joins 1:      Example 1: List the number of students enrolled in each 2017 course offering showing the offer number and number of students in the result.                SELECT Offering.OfferNo,                                     COUNT (*) AS NumSt...

Sorting Operations

  Kinds Of Sorting Operations ·          Bubble Sort Bubble sort is a type of sorting. It is used for sorting 'n' (number of items) elements. It compares all the elements one by one and sorts them based on their values. The above diagram represents how bubble sort actually works. This sort takes O (n 2 ) time. It starts with the first two elements and sorts them in ascending order. Bubble sort starts with first two elements. It compares the element to check which one is greater.   ·          Insertion Sort Insertion sort is a simple sorting algorithm. This sorting method sorts the array by shifting elements one by one. It builds the final sorted array one item at a time. Insertion sort has one of the simplest implementation. This sort is efficient for smaller data sets but it is insufficient for larger lists. It has le...