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

Integrity Constraint Syntax

Integrity Constraint Syntax

Lesson Objectives: 

        Read and write CREATE TABLE statements with PK constraints. 
        Read and write CREATE TABLE statements with FK constraints. 
        Read and write CREATE TABLE statements with simple CHECK constraints




Constraint Syntax Examples:

        CONSTRAINT PKCourse PRIMARY KEY(CourseNo) 
        CONSTRAINT PKEnrollment           PRIMARY KEY (OfferNo, StdNo) 
        CONSTRAINT UniqueCrsDesc        UNIQUE (CrsDesc) 
        CONSTRAINT FKOfferNo      FOREIGN KEY (OfferNo)   REFERENCES Offering 
        CONSTRAINT OffCourseNoReq NOT NULL

External PK Constraint Placement:

        CREATE TABLE Course 
        ( CourseNo CHAR(6), 
                CrsDesc VARCHAR(250), 
                CrsUnits SMALLINT, 
                CONSTRAINT PKCourse PRIMARY KEY(CourseNo), 
                CONSTRAINT UniqueCrsDesc UNIQUE (CrsDesc)          )

External FK Constraint Placement:

        CREATE TABLE Enrollment 
        ( OfferNo INTEGER, 
                StdNo CHAR(11), 
                EnrGrade DECIMAL(3,2), 
                CONSTRAINT PKEnrollment PRIMARY KEY (OfferNo, StdNo), 
                CONSTRAINT FKOfferNo FOREIGN KEY (OfferNo) REFERENCES Offering,                 CONSTRAINT FKStdNo FOREIGN KEY (StdNo) REFERENCES Student     );

Inline Constraint Placement:

           CREATE TABLE Offering 
           (   OfferNo INTEGER, 
               CourseNo CHAR(6) CONSTRAINT OffCourseNoReq NOT NULL, 
              OffLocation VARCHAR(50), 
              OffDays CHAR(6), 
             OffTerm       CHAR(6) CONSTRAINT OffTermReq NOT NULL, 
             OffYear INTEGER CONSTRAINT OffYearReq NOT NULL, 
             FacNo CHAR(11), 
             OffTime DATE, 
             CONSTRAINT PKOffering PRIMARY KEY (OfferNo), 
             CONSTRAINT FKCourseNo FOREIGN KEY (CourseNo) REFERENCES Course,
             CONSTRAINT FKFacNo FOREIGN KEY (FacNo) REFERENCES Faculty );

Check Constraint Examples:

            Syntax: CHECK ( <row-condition> ) 
            Row conditions with columns from the same table

                CONSTRAINT ValidGPA CHECK ( StdGPA BETWEEN 0 AND 4 ) 
                CONSTRAINT ValidStdClass 
                CHECK ( StdClass IN ('FR','SO', 'JR', 'SR' ) 
                CONSTRAINT OffYearValid CHECK ( OffYear > 1970 ) 
                CONSTRAINT EnrollDropValid 
                CHECK ( EnrollDate < DropDate )





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                                      ...
  d. Insert a new row in the Location table related to the Facility row in modification problem (c). The new row should have “Door” for the location name. Query Formulation + Result Snapshot Our Official Website :  Web Conquerors  (https://www.webconquerors.com/)  Want to get digital services?  Contact US Want to know about our services?  Our Services

Correction For ERD

 d. For each consistency error in Figure 1, you should identify the consistency rule violated and suggest possible resolutions of the error. The ERD has generic names to help will concentrate on finding diagram errors rather than focusing on the meaning of the diagram. Answer:                Entity6 is violation of the Primary key rule. As there are 3 attributes from within Entity6 that are marked as primary key. Entity6 also violates the Identifying relationship rule, as there is no foreign key in the Entity6 table to identify the item from Entity7. Since this a weak entity type, the cardinality must be 1:1, which it is not. Entity2 is a violation of the Identifying relationship rule due to it not being a weak entity type when there is an identifying relationship. Our Official Website :  Web Conquerors  (https://www.webconquerors.com/)  Want to get digital services?  Contact US Want to know about our services?  ...