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

Creating the Database

 

The first thing that we need to do is create a database for our project.

 

Launch MySQL Workbench and create a new file by clicking on File > New Query Tab. Save this file as sportsDB.sql (File > Save Script As... ).

 

We are going to create a database called sports_booking.

 

Enter the line

 

CREATE DATABASE sports_booking;

 

into sportsDB.sql and execute it.

 

If all goes well, you should see the message

 

1 row (s) affected

 

in the output window.

 

As we move forward with the project, you’ll be asked to perform various SQL tasks. Do remember to click on the ‘Execute Statement' button to execute your SQL statements after each task. This will allow you to check and correct any mistake as you go along.

 

In addition, you can also create another SQL file called drop.sql. If you make any mistake in your SQL code and need to make amendments, you can drop the...

lock icon The rest of the chapter is locked
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 $15.99/month. Cancel anytime}