-
-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy patheventrequest_insert.sql
More file actions
23 lines (23 loc) · 1.8 KB
/
Copy patheventrequest_insert.sql
File metadata and controls
23 lines (23 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
INSERT INTO EventRequest (evntNo, custNo, facNo, dateHeld, dateReq, dateAuth, status, estCost, estAudience, budNo)
VALUES ('E100', 'C100', 'F100', '2013-10-25', '2013-06-06', '2013-06-08', 'Approved', '5000.00', '80000', 'B1000');
#
INSERT INTO EventRequest (evntNo, custNo, facNo, dateHeld, dateReq, dateAuth, status, estCost, estAudience, budNo)
VALUES ('E101', 'C100', 'F100', '2013-10-26', '2013-07-28', NULL, 'Pending', '5000.00', '80000', 'B1000');
#
INSERT INTO EventRequest (evntNo, custNo, facNo, dateHeld, dateReq, dateAuth, status, estCost, estAudience, budNo)
VALUES ('E102', 'C100', 'F100', '2013-09-14', '2013-07-28', '2013-07-31', 'Approved', '5000.00', '80000', 'B1000');
#
INSERT INTO EventRequest (evntNo, custNo, facNo, dateHeld, dateReq, dateAuth, status, estCost, estAudience, budNo)
VALUES ('E103', 'C100', 'F100', '2013-09-21', '2013-07-28', '2013-08-01', 'Approved', '5000.00', '80000', 'B1000');
#
INSERT INTO EventRequest (evntNo, custNo, facNo, dateHeld, dateReq, dateAuth, status, estCost, estAudience, budNo)
VALUES ('E104', 'C101', 'F101', '2013-12-03', '2013-07-28', '2013-07-31', 'Approved', '2000.00', '12000', 'B1000');
#
INSERT INTO EventRequest (evntNo, custNo, facNo, dateHeld, dateReq, dateAuth, status, estCost, estAudience, budNo)
VALUES ('E105', 'C101', 'F101', '2013-12-05', '2013-07-28', '2013-08-01', 'Approved', '2000.00', '10000', 'B1000');
#
INSERT INTO EventRequest (evntNo, custNo, facNo, dateHeld, dateReq, dateAuth, status, estCost, estAudience, budNo)
VALUES ('E106', 'C101', 'F101', '2013-12-12', '2013-07-28', '2013-07-31', 'Approved', '2000.00', '10000', 'B1000');
#
INSERT INTO EventRequest (evntNo, custNo, facNo, dateHeld, dateReq, dateAuth, status, estCost, estAudience, budNo)
VALUES ('E107', 'C105', 'F100', '2013-11-23', '2013-07-28', '2013-07-31', 'Denied', '10000.00', '5000', NULL);