sql常用语句
Posted crhdyl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql常用语句相关的知识,希望对你有一定的参考价值。
1、得到最大id 根据某个字段在某张表中
string strsql = "select max(" + FieldName + ")+1 from " + TableName;
2、是否存在该记录 根据id查找
StringBuilder strSql=new StringBuilder();
strSql.Append("select count(1) from tpwellbase0");
strSql.Append(" where [email protected]");
3、增加一条数据 根据model增加
StringBuilder strSql=new StringBuilder();
strSql.Append("insert into tpwellbase0(");
strSql.Append("wellname,oil_pro_plant,block)");
strSql.Append(" values (");
strSql.Append("@wellname,@oil_pro_plant,@block)");
4、更新一条数据 根据model更新
StringBuilder strSql=new StringBuilder();
strSql.Append("update tpwellbase0 set ");
strSql.Append("[email protected],");
strSql.Append("[email protected]_pro_plant,");
strSql.Append("[email protected]");
strSql.Append(" where [email protected]");
5、删除一条数据 根据id
StringBuilder strSql=new StringBuilder();
strSql.Append("delete from tpwellbase0 ");
strSql.Append(" where ID in ("+IDlist + ") ");
6、得到一个对象实体 根据id获取改行model
StringBuilder strSql=new StringBuilder();
strSql.Append("select ID,wellname,oil_pro_plant,block from tpwellbase0 ");
strSql.Append(" where [email protected]");
7、获得数据列表list<model>
8、分页获取数据 dataset格式
以上是关于sql常用语句的主要内容,如果未能解决你的问题,请参考以下文章