本文小编为大家详细介绍“mysql怎么使用命令行连接服务器”,内容详细,步骤清晰,细节处理妥当,希望这篇“mysql怎么使用命令行连接服务器”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。
1、在登录成功后出现mysql命令提示窗口,在上面执行SQL语句。
[root@host]# mysql -u root -p Enter password:******
2、使用了root用户登录到mysql服务器,也可以使用其他mysql用户登录。
Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 2854760 to server version: 5.0.9 Type 'help;' or 'h' for help. Type 'c' to clear the buffer.
3、退出 mysql命令提示窗口可以使用exit命令。
mysql> exit Bye