上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页
摘要: <table> <thead> <tr> <th>姓名</th> <th>性别</th> <th>暂住地</th> </tr> </thead> <tbody> <tr class="parent" id="row_01"> <td colspan="3">前台设计组</td> </tr> <tr 阅读全文
posted @ 2016-10-27 11:47 Debugs 阅读(3866) 评论(0) 推荐(0)
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.or 阅读全文
posted @ 2016-10-27 11:17 Debugs 阅读(258) 评论(0) 推荐(0)
摘要: -- Create sequence create sequence XRMKSD_DET_SEQminvalue 1maxvalue 999999999999999999999999999start with 1increment by 1cache 75; 阅读全文
posted @ 2016-10-27 11:11 Debugs 阅读(209) 评论(0) 推荐(0)
摘要: <table id="tab" border="1" width="60%" align="center" style="margin-top:20px"> <tr> <td width="20%">序</td> <td >标题</td> <td >描述</td> <td >操作</td> </tr 阅读全文
posted @ 2016-10-27 11:09 Debugs 阅读(1633) 评论(0) 推荐(0)
摘要: declare @a intbegin set @a=(select COUNT(*) from PFT_PWK_WORKS)end; -- 必须加分号 with query as (select ROW_NUMBER() over(order by pwk_start_dt desc) AS RO 阅读全文
posted @ 2016-10-21 13:03 Debugs 阅读(136) 评论(0) 推荐(0)
摘要: Number.prototype.toRound = function(d) { var s=this+"";if(!d)d=0; if(s.indexOf(".") 1)s+=".";s+=new Array(d+1).join("0"); if (new RegExp("^(-|\\+)?(\\ 阅读全文
posted @ 2016-10-11 10:01 Debugs 阅读(324) 评论(0) 推荐(0)
摘要: CREATE TABLE [dbo].[sysMenuTree]([NoteId] [decimal](18, 0) NOT NULL,[ParentId] [decimal](18, 0) NULL,[sText] [nvarchar](50) NULL,[sValue] [nvarchar](5 阅读全文
posted @ 2016-08-31 11:22 Debugs 阅读(279) 评论(0) 推荐(0)
摘要: with tabs as ( select ROW_NUMBER() over(partition by TASKUSER order by INCIDENT) as rows,* from UltimusDB.dbo.TASKS where INCIDENT=888 ) select MAX(ro 阅读全文
posted @ 2016-08-31 10:41 Debugs 阅读(216) 评论(0) 推荐(0)
摘要: string Strsql = string.Format(@"select ee.DOCUMENTNO,ee.APPLICANTNAME,ee.COMPANY,ee.REQUESTTIME,ee.REQ_TITLE, ee.INCIDENT, (datediff(d,getdate(),START 阅读全文
posted @ 2016-06-30 16:21 Debugs 阅读(538) 评论(0) 推荐(0)
摘要: select SUBSTRING(b.SUMMARY,0,charindex('_',b.SUMMARY))as SUMMARY from UltimusDB.dbo.INCIDENTS b 阅读全文
posted @ 2016-03-23 18:41 Debugs 阅读(460) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页