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

Testing the Database

 

To test our database, let’s create a new SQL file called test.sql. We’ll do all our testing on this file.

 

First, we’ll check if our tables are created correctly. Try executing the following statements to check if the tables are correct:

 

SELECT * FROM members;

SELECT * FROM pending_terminations;

SELECT * FROM bookings;

SELECT * FROM rooms;

 

members, bookings and rooms should contain the same information as the respective tables shown in Appendix B.

 

pending_terminations, on the other hand, should be empty.

 

Got it? Good!

 

Next, let’s try the insert_new_member procedure. Try executing the following statements:

 

CALL insert_new_member ('angelolott', '1234abcd', 'AngeloNLott@gmail.com');

 

SELECT * FROM members ORDER BY member_since DESC;

 

You should get the table below. The new member added is shown on the first row of the table...

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 €14.99/month. Cancel anytime}