Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learn SQL using MySQL in One Day and Learn It Well

You're reading from  Learn SQL using MySQL in One Day and Learn It Well

Product type Book
Published in Apr 2024
Publisher Packt
ISBN-13 9781836205678
Pages 121 pages
Edition 1st Edition
Languages
Author (1):
Jamie Chan Jamie Chan
Profile icon Jamie Chan

Appendix C: Suggested Solution for Project

 

sportsDB.sql

 

CREATE DATABASE sports_booking;

USE sports_booking;

 

-- ********************* CREATE TABLES ********************************

 

CREATE TABLE members (

id VARCHAR(255) PRIMARY KEY,

password VARCHAR(255) NOT NULL,

email VARCHAR(255) NOT NULL,

member_since TIMESTAMP DEFAULT NOW() NOT NULL,

payment_due DECIMAL(6, 2) NOT NULL DEFAULT 0

);

 

CREATE TABLE pending_terminations (

id VARCHAR(255) PRIMARY KEY,

email VARCHAR(255) NOT NULL,

request_date TIMESTAMP DEFAULT NOW() NOT NULL,

payment_due DECIMAL(6, 2) NOT NULL DEFAULT 0

);

 

CREATE TABLE rooms (

id VARCHAR(255) PRIMARY KEY,

room_type VARCHAR(255) NOT NULL,

price DECIMAL(6, 2) NOT NULL

);

 

CREATE TABLE bookings (

id INT AUTO_INCREMENT PRIMARY KEY,

room_id VARCHAR(255) NOT NULL,

booked_date DATE NOT NULL,

booked_time TIME NOT NULL,

member_id VARCHAR(255) NOT NULL,

datetime_of_booking TIMESTAMP DEFAULT NOW...

lock icon The rest of the chapter is locked
arrow left Previous Chapter
You have been reading a chapter from
Learn SQL using MySQL in One Day and Learn It Well
Published in: Apr 2024 Publisher: Packt ISBN-13: 9781836205678
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}