Introduction to MySQL statement comments

Introduction to MySQL statement comments

MySQL supports three types of comments:

1. From the '#' character from the end of the line.

2. From the '--' sequence to the end of the line. Please note that the '-- ' (double dash) comment style requires that the second dash be followed by at least one whitespace character (eg space, tab, newline, etc.).

3. From the /* sequence to the following */ sequence. The closing sequence does not have to be on the same line, so this syntax allows comments to span multiple lines.

The following example shows 3 styles of comments:

//How to write comment statements in mysqlmysql> SELECT 1+1; # This comment continues until the end of the linemysql> SELECT 1+1; -- This comment continues until the end of the linemysql> SELECT 1 /* This is a comment in the middle of a line*/ + 1;
mysql> SELECT 1+
/*
This is a multi-line comment form */
1;

The above comment syntax applies to how the mysqld server parses SQL statements. The MySQL client also performs some statement parsing before sending it to the server. (For example, it parses to determine statement boundaries in multi-statement lines).

Summarize

The above is all about the introduction of MySQL statement comment method in this article. Interested friends can refer to: MySQL optimization using connection (join) instead of subquery, MYSQL subquery and nested query optimization example analysis, MySQL in statement subquery efficiency optimization skills example, etc. If there are any deficiencies, please leave a message to point them out. The editor will reply to you in time and make corrections. I hope it will be helpful to you.

You may also be interested in:
  • Mysql Sql statement comments
  • MySql creates a table with explanation and annotates the table and fields
  • MariaDB (MySQL branch) my.cnf configuration file Chinese annotated version

<<:  React Diff Principle In-depth Analysis

>>:  Explanation of Dockerfile instructions and basic structure

Recommend

A detailed introduction to deploying RabbitMQ environment with docker

Prerequisites: Docker is already installed 1. Fin...

Deleting two images with the same id in docker

When I created a Docker container today, I accide...

Detailed explanation of MySQL basic operations (Part 2)

Preface This article contains 1. Several major co...

Example code for implementing div concave corner style with css

In normal development, we usually use convex roun...

MySQL inspection script (must read)

As shown below: #!/usr/bin/env python3.5 import p...

Understand CSS3 FlexBox elastic layout in 10 minutes

Basic Introduction Features Flexbox is a CSS disp...

Vue realizes the percentage bar effect

This article shares the specific code of Vue to r...

Vue project implements file download progress bar function

There are two common ways to download files in da...

How to use Docker containers to implement proxy forwarding and data backup

Preface When we deploy applications to servers as...

CentOS7.x uninstall and install MySQL5.7 operation process and encoding format modification method

1. Uninstalling MySQL 5.7 1.1查看yum是否安裝過mysql cd y...