sql的增删改查
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql的增删改查相关的知识,希望对你有一定的参考价值。
快考试了,sql的增删改还不太懂,求C#对sql的连接,及增删改查,全都要,最好有注释!!!
参考技术A 选择:select * from table1 where 范围插入:insert into table1(field1,field2) values(value1,value2)
删除:delete from table1 where 范围
更新:update table1 set field1=value1 where 范围
查找:select * from table1 where field1 like ’%value1%’ (所有包含‘value1’这个模式的字符串)---like的语法很精妙,查资料!
排序:select * from table1 order by field1,field2 [desc]
总数:select count as totalcount from table1
求和:select sum(field1) as sumvalue from table1
平均:select avg(field1) as avgvalue from table1
最大:select max(field1) as maxvalue from table1
最小:select min(field1) as minvalue from table1[separator] 参考技术B SELECT [Account],[Password] FROM [User_Info] --查询User_Info表中的 [Account],[Password]字段INSERT INTO [User_Info]([Account],[Password]) VALUES('jxymnet','123456') --增加User_Info表中的 [Account],[Password]值UPDATE User_Info SET Password = '123456' --更新User_Info表中的 [Account],[Password]字段的值,条件是Account = 'jxymnet'DELETE FROM User_Info --删除User_Info中的信息 条件是 Account=‘jxymnet’ 参考技术C 增insert into 表名 (字段名) values(字段值)删delete from 表名 where 条件(如id=1)改update 表名 set 字段名=字段值 where 条件查select 字段名(*) from 表名 where 条件
以上是关于sql的增删改查的主要内容,如果未能解决你的问题,请参考以下文章