Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Create Table House ( hid int NOT NULL, Adrs varchar(100) NOT NULL, zipcode int, Primary Key (hid) ); Insert Into House values (1, '154 corner
Create Table House ( hid int NOT NULL,
Adrs varchar(100) NOT NULL,
zipcode int,
Primary Key (hid) );
Insert Into House values (1, '154 corner St.', 25098); Insert Into House values (2, '2540 Lockwood dr.', 32006); Insert Into House values (3, '345 Minnesota ln.', 45766);
write a PL/SQL
1) first check whether there exists a house with same address and zip code, if so print a message 'this house exist!'
2) otherwise, insert the house into house table and print out new house ID.
Step 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