怎么退出MySQL数据库?(怎么退出mysql)
MySQL是一种流行的关系型数据库管理系统,被广泛应用于网络应用开发中,具有强大的存储能力及功能性。有时候,你的程序不想在当前数据库上运行,此时就需要退出MySQL数据库。那么,怎样退出MySQL数据库呢?
首先,在MySQL的命令行环境中运行“quit”命令可以快速的退出,例如:
mysql> quit
其次,在MySQL 服务器上,按Ctrl + C 组合键来终止MySQL 服务:
; mysql -h 127.0.0.1 -u root -p
Enter password: ********
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.7.17 Source distribution
Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.
mysql>Ctrl+C
^C
再次,可以使用exit 命令退出MySQL数据库:
mysql> exit
Bye
最后,还可以使用MySQL提供的“quit”命令来退出MySQL命令行界面:
mysql> quit;
Bye
以上就是MySQL数据库的退出操作的一些常用方法,各位可以根据自己的实际情况挑选最合适的退出方式来实现所需的效果,以满足不同的应用场景。