CRUD操作

Posted 奔跑的葛根

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CRUD操作相关的知识,希望对你有一定的参考价值。

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操作的主要内容,如果未能解决你的问题,请参考以下文章

Extjs使用商店代理api; CRUD

为 MongoDB 上的 CRUD 操作组织 Go 代码

如何使用代码为 Visual Studio 等 CRUD 操作生成整个样板代码?

spring jdbcTemplate的CRUD操作

csharp 用于SQL CRUD操作的常用C#代码段

使用实体框架、代码优先和 CRUD 操作的存储库模式