码迷,mamicode.com
首页 > 数据库 > 详细

mysql基础---DOS下创建表(增删改查)

时间:2020-04-16 13:00:43      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:ack   部分   ble   into   null   sql基础   char   数据   color   

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下创建表(增删改查)

标签:ack   部分   ble   into   null   sql基础   char   数据   color   

原文地址:https://www.cnblogs.com/sujw/p/12711907.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!