标签:
1.创建表
语法
create table 表名(字段1 约束一 约束二 , 字段二 约束一 约束二);
2.插入数据
语法
insert into 表名(字段1, 字段2, 字段3)values(value1, value2, value3);
3.更新数据
语法
updata 表名 set 字段1 = 修改值1, 字段2 = 修改值2 where 条件;
事例:
updata student set s_age = 25 where s_age = 18;
//4.删除数据
语法:
delete from 表名 where 条件;
事例:
delete from student where s_age = 10;
//5.查找数据
语法:
select 要查找的字段 from 表名 where 条件
// 查询姓名为芳芳女神的所有信息
select *from student where s_name = ‘芳芳女神‘;
标签:
原文地址:http://www.cnblogs.com/menglingxu/p/5460190.html