MySQL CommentsA comment is a programmer-readable explanation or annotation placed in the SQL queries. It is used for the purpose of making the SQL statements easier for humans to understand. MySQL generally ignores them during the parsing of the SQL code. Comments can be written in a single line or multiple lines. MySQL can also provide an executable comment. So, until we have not to use the executable comments, it only executes the SQL part. In MySQL Server, we can write the comments in mainly three ways that are given below:
Let us understand each in detail. Using # symbolIt is used at the end of the line or SQL statements. Syntax Example This example gives the student details without parsing comments. Output: Using -- symbolIt is placed at the end of the line. In this comment styling, we must ensure that the double-slash has at least one whitespace or control character such as tab, space, newline, etc. Syntax Example This example gives the student details without parsing comments. Output: Using /* and */ symbolThis type of comment is similar to the C programming language that can span in multiple lines. We can use this comment to document the block of SQL statements. Syntax Example Output: Executable CommentsMySQL has also used executable comments. This comment styling provides portability between different databases. It allows us to embed the SQL code that the only executable in MySQL, but other databases will ignore this extension. Syntax The following are the syntax of executable comments: Syntax Example Output: We can also use the below syntax to execute the comment in particular version of MySQL: Here. #### represents the MySQL version name that executes the comment. The first # used for the major version, e.g., 5 or 8. The second two ## is used for the minor version, and the last two ## used for the patch level. Next TopicMySQL CHECK CONSTRAINT |