13 SLIP Customer Ticket 1
13 SLIP Customer Ticket 1
13 SLIP Customer Ticket 1
[Marks 40]
Customer (c_no, c_name, c_city, c_ph_no)
Ticket (t_no, booking_date, fare, traveling_date)
Create a RDB in 3NF and write PL/SQL blocks in Oracle for the following:
____________________________________________________________________
______________________________________________________________________
2)
declare
begin
if :new.tdate < :new.bdate then
raise_application_error(-20001,'Travelling Date Cannot be Less than
today');
end if;
end;
_________________________________________________________________________
____