0% found this document useful (0 votes)
241 views4 pages

Learn SQL in One Day and Learn It Well - Resources

Uploaded by

Patrice Walters
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
241 views4 pages

Learn SQL in One Day and Learn It Well - Resources

Uploaded by

Patrice Walters
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Copyright © http://www.learncodingfast.

com/sql

Table of Contents
Appendix A: Tables for companyHR ..................................................................................... 2
Appendix B: Tables for sportsDB .......................................................................................... 3
Data for sportsDB ................................................................................................................. 4
Appendix A: Tables for companyHR
employees

mentorships
Appendix B: Tables for sportsDB
members

bookings

rooms
Data for sportsDB
members

('afeil', 'feil1988<3', '[email protected]', '2017-04-15 12:10:13', 0),


('amely_18', 'loseweightin18', '[email protected]', '2018-02-06 16:48:43', 0),
('bbahringer', 'iambeau17', '[email protected]', '2017-12-28 05:36:50', 0),
('little31', 'whocares31', '[email protected]', '2017-06-01 21:12:11', 10),
('macejkovic73', 'jadajeda12', '[email protected]', '2017-05-30 17:30:22', 0),
('marvin1', 'if0909mar', '[email protected]', '2017-09-09 02:30:49', 10),
('nitzsche77', 'bret77@#', '[email protected]', '2018-01-09 17:36:49', 0),
('noah51', '18Oct1976#51', '[email protected]', '2017-12-16 22:59:46', 0),
('oreillys', 'reallycool#1', '[email protected]', '2017-10-12 05:39:20', 0),
('wyattgreat', 'wyatt111', '[email protected]', '2017-07-18 16:28:35', 0);

rooms

('AR', 'Archery Range', 120),


('B1', 'Badminton Court', 8),
('B2', 'Badminton Court', 8),
('MPF1', 'Multi Purpose Field', 50),
('MPF2', 'Multi Purpose Field', 60),
('T1', 'Tennis Court', 10),
('T2', 'Tennis Court', 10);

bookings

(1, 'AR', '2017-12-26', '13:00:00', 'oreillys', '2017-12-20 20:31:27', 'Paid'),


(2, 'MPF1', '2017-12-30', '17:00:00', 'noah51', '2017-12-22 05:22:10', 'Paid'),
(3, 'T2', '2017-12-31', '16:00:00', 'macejkovic73', '2017-12-28 18:14:23', 'Paid'),
(4, 'T1', '2018-03-05', '08:00:00', 'little31', '2018-02-22 20:19:17', 'Unpaid'),
(5, 'MPF2', '2018-03-02', '11:00:00', 'marvin1', '2018-03-01 16:13:45', 'Paid'),
(6, 'B1', '2018-03-28', '16:00:00', 'marvin1', '2018-03-23 22:46:36', 'Paid'),
(7, 'B1', '2018-04-15', '14:00:00', 'macejkovic73', '2018-04-12 22:23:20', 'Cancelled'),
(8, 'T2', '2018-04-23', '13:00:00', 'macejkovic73', '2018-04-19 10:49:00', 'Cancelled'),
(9, 'T1', '2018-05-25', '10:00:00', 'marvin1', '2018-05-21 11:20:46', 'Unpaid'),
(10, 'B2', '2018-06-12', '15:00:00', 'bbahringer', '2018-05-30 14:40:23', 'Paid');

You might also like