What should I do if I want to cancel an incorrect MySQL command?

What should I do if I want to cancel an incorrect MySQL command?

I typed a wrong mysql command and want to cancel it. What should I do? If you use ctrl + c, you will exit directly. What should I do? Let’s take a look:

mysql> show tables; \c
+-------------------+
| Tables_in_db_test |
+-------------------+
| tb_test |
| tb_test_ex |
+-------------------+
2 rows in set (0.00 sec)

mysql> show tables \c
mysql> show tabxx \c
mysql> 

If you don't know this little trick, it's really annoying.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • How to solve the problem of case insensitivity in MySQL queries
  • MySQL optimization strategy (recommended)
  • Detailed explanation of how MySQL solves phantom reads
  • Detailed explanation of the 10061 unknown error when using Navicat to connect to a remote Linux MySQL database
  • Detailed explanation of MySQL database addition, deletion and modification operations
  • How to add index to mysql using shell script
  • MySQL character set garbled characters and solutions
  • MySQL starts slow SQL and analyzes the causes
  • Will MySQL execute the update statement again if it has the same data as the original one?
  • Reasons and solutions for slow MySQL query stuck in sending data

<<:  The whole process of installing and configuring Harbor1.7 on CentOS7.5

>>:  Vue3 implements CSS infinite seamless scrolling effect

Recommend

The images in HTML are directly replaced by base64 encoded strings

Recently, I came across a webpage that had images ...

Summary of the main attributes of the body tag

bgcolor="text color" background="ba...

Summary of MySQL's commonly used database and table sharding solutions

Table of contents 1. Database bottleneck 2. Sub-l...

JS implements a simple counter

Use HTML CSS and JavaScript to implement a simple...

Node.js+express message board function implementation example

Table of contents Message Board Required librarie...

Using js to achieve the effect of carousel

Today, let's talk about how to use js to achi...

mysql show simple operation example

This article describes the mysql show operation w...

How to use the Clipboard API in JS

Table of contents 1. Document.execCommand() metho...

Install Percona Server+MySQL on CentOS 7

1. Environmental Description (1) CentOS-7-x86_64,...

Supplementary article on front-end performance optimization

Preface I looked at the previously published arti...

An example of elegant writing of judgment in JavaScript

Table of contents Preface 1. Monadic Judgment 1.1...

Goodbye Docker: How to Transform to Containerd in 5 Minutes

Docker is a very popular container technology. Th...

MySQL learning record: bloody incident caused by KEY partition

Demand background Part of the data in the busines...

Common failures and reasons for mysql connection failure

=================================================...

MySQL controls the number of attempts to enter incorrect passwords

1. How to monitor MySQL deadlocks in production e...