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

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

Next Chapter arrow right
You have been reading a chapter from
Learn SQL using MySQL in One Day and Learn It Well
Published in: Apr 2024 Publisher: Packt ISBN-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.
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}