前提:假设我们的电脑或服务器已经正确安装了mysql服务器
一:连接和断开mysql服务器
1.1连接数据库服务器
shell> mysql -u user -p (user用户名通常为root,-u -p 两个mysql的参数名。然后按enter健会提示我们输入密码,如下)
Enter password: ********
如果数据库在其它电脑上,我们必要加入IP地址如下
shell> mysql -h host -u user -p (host 即远程服务器地址 -h参数 host参数值),如果密码和用户名全部正确则进入mysql服务器,界面如下
shell> mysql -h host -u user -p
Enter password: ********
Welcome to the MySQL monitor. Commands end with ; or \g. //欢迎你
Your MySQL connection id is 25338 to server version: 5.7.26-standard // 告诉你连接的ID 和数据库版本好
Type 'help;' or '\h' for help. Type '\c' to clear the buffer. //一些提示信息 你可以尝试在mysql(提示符)输入help看看