mysql基础---DOS下创建表(增删改查)
Posted 巴黎左岸丶花未眠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql基础---DOS下创建表(增删改查)相关的知识,希望对你有一定的参考价值。
1.创建表:
create table 表名 (
列1 类型1 约束1,
列2 类型2 约束2,
列3 类型3
);
例如:
create table student(
id int primary key,
name varchar(20) not null,
sex char(1)
);
2.插入数据 insert into
a.全量插入
insert into 表名 values (列1值,列2值,列3值);
eg:insert into student values (1,‘张三‘,‘男‘);
b.部分插入(插入指定列)
insert into 表名 (列1,列2) values (列1值,列2值);
eg:insert into student (id,name) values (1,‘张三‘);
3.修改数据 update
update 表名 set 列=值 where 条件;
eg:update student name=‘李四‘ where id=1;
4.查询数据 select
select 列/* from 表名 where 条件;
eg:select * from student;
5.删除数据 delete
delete from 表名 where 条件;
eg:delete from student where id=1;
以上是关于mysql基础---DOS下创建表(增删改查)的主要内容,如果未能解决你的问题,请参考以下文章