SQL语句规则
操作文件夹
创建数据库
create database db2;
create database db2 default charset utf8;
查看数据库信息
show databases;
删除数据库
drop database db2;
操作文件
查看表格
show tables;
创建表格
create table t1(id int,name char(10)) default charset=utf8;
create table t1(id int,name char(10))engine=innodb default charset=utf8;
create table t3(id int auto_increment,name char(10))engine=innodb default charset=utf8;
create table t1(
列名 类型 null,
列名 类型 not null,
列名 类型 not null auto_increment primary key,
id int,
name char(10)
)engine=innodb default charset=utf8;
# innodb 支持事务,原子性操作
# myisam myisam
auto_increment 表示:自增
primary key: 表示 约束(不能重复且不能为空); 加速查找
not null: 是否为空
操作文件中内容
插入:
insert into t1(id,name) values(1,'alex');
删除:
delete from t1 where id<6
where:条件
修改:
update t1 set age=18;
update t1 set age=18 where age=17;
查看:
select * from t1;