MySQL总览
MySQL常见命令
数据库操作
1、登录数据库
mysql -uroot -proot
2、查看所有数据库
show databases;
3、创建数据库
create database Gwen_liu;
4、选择一个数据库
use test;
5、显示表
show tales;
6、创建数据库表
create table math(
id int,
name varchar(20)
);
7、查看表的结构
desc math;
8、简单查询
select avg(salary), department_id
from employees
where email like ‘%a%‘
group by department_id
9、插入数据,记录
insert into math (id, name) values (1, ‘Gwen‘);
10、删除记录
delete from math where id = 1;
11、更新、修改数据
update math set name="Gwen" where id=1;
12、删除数据表
drop table math;
13、查看mysql版本
select version();