SQL
RayWang80s
王扣得
展开
-
mssql update 的用法
其标准格式:Update 表名 set 字段=值 where 条件不过根据数据的来源不同,还是有所区别的 1.从外部输入这种比较简单例:update tb set UserName="XXXXX" where UserID="aasdd"2.一些内部变量,函数等,比如时间等直接将函数赋值给字段update tb set LastDate=date() where转载 2017-07-11 11:31:28 · 3324 阅读 · 0 评论 -
DataTable 批量插入SqlServer数据库 使用:SqlBulkCopy
简单使用: private void UpdateTitle(DataTable dt) { ) { using (SqlBulkCopy sbc = new SqlBulkCopy(SqlHelper.connectionString)) {转载 2017-07-12 11:15:03 · 1506 阅读 · 0 评论 -
[存档]MSSQL分页
MSSQL:select top 30 * from Ctrip2TaobaoHotelRoomType where id not in (select top 120 id from Ctrip2TaobaoHotelRoomType order by id) order by id;PHP:$pagesql = "select top ".$showrow." * from原创 2017-07-21 11:20:27 · 409 阅读 · 0 评论 -
SQL 查询字段值相等或者重复数据
1.select name , sex , age from tb group by name , sex , age having count(*) > 12.select * from tablename awhere ( select count(*) from tablename where sex=a.sex and age=a.age )>1都可以原创 2017-08-07 16:40:04 · 5895 阅读 · 1 评论 -
MSSQL分页查询语句
zz在MySQL中,可以用 Limit 来查询第 m 列到第 n 列的记录,例如:[sql] view plain copyselect * from tablename limit m, n 但是,在SQL Server中,不支持 Limit 语句。怎么办呢?解决方案:虽然SQL Server不支持 Limit ,但是它支持 TO转载 2017-07-19 17:54:33 · 898 阅读 · 0 评论 -
SQL语句跨表查询
1.使用关键字"IN"SELECT *FROM bms_dsl_PortConsumerBind aWHERE (ConsumerID IN (SELECT ConsumerID FROM bms_dsl_ConsumerInfo b WHERE (b.Name = '空') OR (b.Na转载 2017-08-03 10:55:04 · 5915 阅读 · 0 评论