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                                      ...

Algorithm For Quick Sort

  "Algorithm For Quick Sort" Step 1:        Choose the highest index value as pivot. Step 2:        Take two variables to point left and right of the list excluding pivot. Step 3:        Left points to the low index. Step 4:        Right points to the high index. Step 5:        While value at left < (Less than) pivot move right. Step 6:        While value at right > (Greater than) pivot move left. Step 7:        If both Step 5 and Step 6 does not match, swap left and right. Step 8:        If left = (Less than or Equal to) right, the point where they met is new pivot. Our Official Website :  Web Conquerors  (https://www.webconquerors.com/)  Want to get digital services?  Contact US Want to know about our services?  Our Services

Differences Between Algorithm and Pseudocode

  "Differences Between Algorithm and Pseudocode" Algorithm Pseudocode 1.       Systematic logical approach which is a well-defined, step-by-step procedure that allows a computer to solve a problem. It is a simpler version of a programming code in plain English which uses short phrases to write code for a program before it is implemented in a specific programming language. 2.       Algorithms can be expressed using natural language, flowcharts, etc. There are several formats which are used to write pseudo-codes and most of them take down the structures from languages such as C, Lisp, FORTRAN, etc. 3.      Procedure of algorithm is like this Start from the leftmost element of arr[] and one by one compare x with each element of arr[]. If x matches with an element, return the index. If x doesn’t match with an...