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

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 page is locked
Previous PageNext Chapter
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

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