首页 > 其他 > 详细

CRUD操作

时间:2016-10-16 19:39:36      阅读:172      评论:0      收藏:0      [点我收藏+]
CRUD操作
create 创建
read 读取
update 修改
delete 删除


select code ,name from info 读取特定值
select * from info where code=p003 条件查询
select * from info where code=003 or nation=n002 或的关系 必须有一个满足条件
select * from info where sex=0 and nation=002 与的关系 两种都包括
select * from info where like _奥迪%
select * from info order by code 升序asc 降序 desc

insert into info values(‘‘,值) 自增长列的处理

delete from info where code=p002删除数据

update info set name=梁振,sex=1 where code=p003

 

CRUD操作

原文:http://www.cnblogs.com/benpaodegegen/p/5967152.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!