一、数据库的增删改查
1、增:create database 库名;
2. 删:drop database 库名;
3. 改:alter database 库名 charset=‘gbk’
4. 查:show database; 查看所有数据库
show create database 库名;查看一个
1、切换库:use 库名;
2、增:create table 表名(属性 属性类型,…)
3、改:alter table 表名 modify name char(6);
4、删:drop table b2;
5、查:select * from tables;
select create table 表名;
describe b1;
1、增加:inster into 表名 values(属性值,属性值,…)
insert into 表名 values(1,‘json’),(2,‘hello’),(3,‘world’).插入多条语句
2、删 :delete from 表名 where 条件
3、改: update 表名 set 属性=属性值 where 条件
4、查:select * from 表名;
select 表的属性 from表 where 条件;
1、修改表名:
alter table 表名 rename 新表名;
2、 增加字段:
alter table 表名 add 字段名 字段类型(宽度)约束条件;
alter table 表名 add 字段名 字段类型(宽度)约束条件 first;
增加在该字段名后
alter table 表名 add 字段名 字段类型(宽度)约束条件 after 字段名;
3、删除字段
alter table 表名 drop 字段名;
4、修改字段
改类型
alter table 表名 modify 字段名 字段类型(宽度) 约束条件;
改字段名
alter table 表名 change 旧字段名 新字段名 字段类型(宽度) 约束条件;
注意:复制表只能复制表结构,不能复制主键和外键。
create table 表名 select * from 旧表名;