SQL Comments
There are two types of comments in SQL: one-line and multi-line. The one-line comment starts with --
, and multiline starts with /*
and ends with */
, like in C++:
--comment for current line /* multi- line comment*/
Congratulations! Don't stop learning and complete Data Manipulation using SQL course!
Everything was clear?
Thanks for your feedback!
SectionΒ 3. ChapterΒ 13