In MySQL, you can use semicolon (;), slash () or GO statement to end the current statement, of which semicolon is the most commonly used method.
How to end the current MySQL statement
In MySQL, you can use the following methods to end the current statement:
1. Use a semicolon (;)
The easiest way is to use a semicolon (;) to end a statement. The semicolon instructs the MySQL executor to execute the statement and return the results.
For example:
<code class="sql">SELECT * FROM users;</code>
2. Use slash (\)
Slash () can also be used to end a statement, but it is only used when Used before semicolon. It instructs the MySQL executor to ignore the next row and continue execution.
For example:
<code class="sql">SELECT * FROM users\; -- 注释</code>
3. Use the GO statement
The GO statement is an explicit instruction that instructs the MySQL executor to execute the current statement and return the result . It is usually used in scripts or programs.
For example:
<code class="sql">SELECT * FROM users GO</code>
Select method
The above three methods can effectively end the MySQL statement. The semicolon method is the most commonly used, while the slash method can be used to insert comments. The GO statement is mainly used in scripts and programs.
The above is the detailed content of How to end the current statement in mysql. For more information, please follow other related articles on the PHP Chinese website!