Answered step by step
Verified Expert Solution
Question
1 Approved Answer
SQL Programming Report three values found in the PAYINFO table and store them in variables. Output should be: Values are 15, 18.5, 40 DROP TABLE
SQL Programming
Report three values found in the PAYINFO table and store them in variables. Output should be:
Values are 15, 18.5, 40
DROP TABLE EMPLOYEE CASCADE CONSTRAINTS; CREATE TABLE EMPLOYEE ID Name Hours CHARL9) VARCHAR2 (12) NUMBER3) CONSTRAINT PK EMPLOYEE PRIMARY KEY (ID) INSERT INTO EMPLOYEE VALUES (717222144','Daleaz', 30) INSERT INTO EMPLOYEE VALUES'013331902',Jones',50) INSERT INTO EMPLOYEE VALUES'591342771', 'Nesmith',65) INSERT INTO EMPLOYEE VALUES 822182889'", 'Tark', 25) SELECTFROM EMPLOYEE: DROP TABLE PAYINFO CREATE TABLE PAYINEO Regular NUMBER 4, 2), overtime BR 4,2, Cutoff NUMBER12) INSERT INTO PAYINFO VALUES (15.00, 18.50, 40) SELECTFROM PAYINFO: CoMMITStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started