Reader small image

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

Product typeBook
Published inApr 2024
PublisherPackt
ISBN-139781836205678
Edition1st Edition
Right arrow
Author (1)
Jamie Chan
Jamie Chan
author image
Jamie Chan

Jamie Chan is a tutor and freelance programmer with years of experience and a dedicated passion for sharing the joy of programming with as many people as possible. With seven bestselling programming books on Amazon, Jamie's publications stand out for their ability to break down complex concepts into simple terms. Additionally, each book includes complete projects at the end, enabling hands-on learning and a deep understanding of the concepts presented.
Read more about Jamie Chan

Right arrow

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
You have been reading a chapter from
Learn SQL using MySQL in One Day and Learn It Well
Published in: Apr 2024Publisher: PacktISBN-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.
undefined
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 $15.99/month. Cancel anytime

Author (1)

author image
Jamie Chan

Jamie Chan is a tutor and freelance programmer with years of experience and a dedicated passion for sharing the joy of programming with as many people as possible. With seven bestselling programming books on Amazon, Jamie's publications stand out for their ability to break down complex concepts into simple terms. Additionally, each book includes complete projects at the end, enabling hands-on learning and a deep understanding of the concepts presented.
Read more about Jamie Chan