sql
ahla
这个作者很懒,什么都没留下…
展开
-
2014-4-8-解决insert into select union插入多行只显示1行受影响
insert into order_info(sourceid,ordertypeid,packnum,statusid,intime,isneworder)select 1,58,1,6,GETDATE(),1 union allselect 1,58,1,6,GETDATE(),1原创 2014-04-08 17:21:13 · 6089 阅读 · 0 评论 -
2014-6-27-统计查询
1使用outer apply统计查询select * from(select COUNT(1) 'all' from t_smsphone where sendtime>='2014-01-01 18:26:04.803' and sendtimeouter apply(select COUNT(1) 'succ' from t_smsphone where flag=1 and原创 2014-06-27 17:25:58 · 758 阅读 · 0 评论 -
2014-5-13-sql 查询指定表是否含有指定列
if not exists(select 1 from syscolumns where id=object_id('source_wait') and name='sort' )beginalter table source_wait add sort int not null default 0endgo原创 2014-05-13 14:29:37 · 743 阅读 · 0 评论 -
2014-8-13-sql循环插入
declare @i intdeclare @sourceid int declare @tempid intset @sourceid=0--循环变量set @i=0while @ibegin--订单快递id为动态变量set @tempid=( select top 1 tid from sys_typelib where tpid=1 and tid>@so原创 2014-08-13 18:53:53 · 664 阅读 · 0 评论 -
2013-11-28-sql语句
1.查询表里加一列自动编号.例如下面的rowid2.查询A表列+B表一聚合列。例如下面的sumnumdemo:SELECT ROW_NUMBER() OVER(ORDER BY u.ID DESC) AS Rowid,u.ID,u.UserName,u.TrueName,u.JoinNum,(SELECT COUNT(1) FROM erp_MeetingAttendanc原创 2013-11-28 13:43:00 · 788 阅读 · 0 评论 -
2014-5-13-sql-时间转换-根据时间的分钟进行排序
时间的分钟-->就是将 时间转换成 fen原创 2014-05-13 10:58:16 · 1446 阅读 · 0 评论 -
2014-12-29-sqlserver里一列单号替换为可查询的加单引号
原创 2014-12-29 20:27:09 · 1595 阅读 · 0 评论