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

Comments

 

Now that we know how to execute SQL statements, we are ready to start learning some SQL commands. However, before we do that, there’s one more concept that I’ll like to cover - comments.

 

As mentioned previously, the first line in the code that we wrote (-- Using SELECT to display messages) is a comment.

 

Comments are written to make our code more readable for other programmers. They are meant for humans only and are ignored by the DBMS.

 

To add comments to our program, we type two hyphens, followed by a space, as demonstrated in the example above.

 

Alternatively, we can also use the # symbol as shown below:

 

# This is another way to add comment

 

Last, but not least, if we want to type multiple lines comments, we can use the /*...*/ symbols:

 

/* This is a comment

This is also a comment

This is the third comment */

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
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