TSQL83 Iplement a trigger that restricts the number of seats

T-SQL-8-3

Iplement a trigger that restricts the number of seats at a table to be at least zero and not greater than 8.

DATABASE (key fields are underlined)

EMPLOYEE TABLE: EMP_ID, EMP_LNAME, EMP_STREET, EMP_CITY, EMP_STATE, EMP_ZIP, EMP_START_DATE

TABLES TABLE: TABLE_ID, AREA_ID, TABLE_SEATS

AREA TABLE: AREA_ID, AREA_NAME, AREA_SUPERVISOR_EMPLOYEE_ID

CUSTOMER TABLE: CUST_ID, CUST_LAST_NAME, CUST_NUMBER_OF_GUESTS

ASSIGNMENT TABLE: EMP_ID, TABLE_ID

SEATING TABLE: CUST_ID, TABLE_ID, SEATING_COST, SEATING_DATE, SEATING_TIP

Solution

CREATE TRIGGER myTrigger BEFORE INSERT ON tablestable FOR EACH ROW BEGIN IF table_seats<0 or table_seats>8 THEN RAISE_APPLICATION_ERROR( -20002, \'Please Select Valid Number of Seats\'); END if;
T-SQL-8-3 Iplement a trigger that restricts the number of seats at a table to be at least zero and not greater than 8. DATABASE (key fields are underlined) EMPL

Get Help Now

Submit a Take Down Notice

Tutor
Tutor: Dr Jack
Most rated tutor on our site