MySQL服务安装及命令使用
Posted 小小宇小小灰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL服务安装及命令使用相关的知识,希望对你有一定的参考价值。
1.安装
安装的话,在线安装就可以
apt-get install mysql-server MySQL-client
2.启动服务器
sudo service mysql start
3.登录mysql (-u代表用户user,以root这个用户登录)
mysql -u root
4.退出mysql服务
quit
5.查询版本
select version()
6.提示符的含义
1.等待分号; mysql>select user() -> 2.等待引号‘ mysql>select * from family where name =‘smith and age <30 ‘> 3.等待双引号" mysql>select * from family where name ="smith and age <30 "> 走到这一步,应该怎样做呢? 1. 进行补全 2. 输入命令 \c 进行取消命令