基本操作
mysql -u root -p
连接数据库
show databases
查看有什么库
show tables
查看有什么表
use 库名
[进入库]
desc 表名
查看表的结构
建立数据库:create database 库名
删除数据库:drop database 库名
建立表:create table 表名(字段名 字段类型,字段名2 字段类型)
删除表:drop table 表名
添加表里面的字段:alter table 表名 add 字段名 字段类型
删除表里的字段:alter table 表名 drop 字段名
修改表内字段名:alter table 表名 change 旧字段名 新字段名 新类型
增删改查
插入数据(增):
insert into 表名 values(值,值)
insert into 表名(列名1,列名2) values(值1,值2)
查询语句:
select * from 表名 where 条件
select 字段名 from 表名 where 条件
修改数据:
update 表名 set 字段名 = 新列值 where 字段名 = 旧列值
update 表名 set 字段名 = 新列值,字段2 = 新列值 where 字段 = 旧列值
删除数据:
delete from 表名 where 字段名 = 列值