摘要: gridview合并单元格(行列)using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Data;using System.Web.UI.WebControls;/// <summary>///GridViewMergeCell 合并GridView liyang 20090916/// </summary>public class GridViewMergeCell{ public GridViewMergeCell() { // // 阅读全文
posted @ 2012-12-20 10:00 曹玉志 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 不同服务器数据库之间的数据操作--创建链接服务器 exec sp_addlinkedserver 'ITSV' , '' , 'SQLOLEDB' , '远程服务器名或ip地址' exec sp_addlinkedsrvlogin 'ITSV' , 'false' , null , '用户名' , '密码' exec sp_dropserver 'ITSV' , 'DROPLOGINS'--查询示例 select * from ITSV 阅读全文
posted @ 2012-12-20 09:58 曹玉志 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 以下是SQL 日期截取 & SQL Server日期比较日期查询常用语句select CONVERT(varchar, getdate(), 120 )2004-09-12 11:06:08select replace(replace(replace(CONVERT(varchar, getdate(), 120 ),'-',''),' ',''),':','')20040912110608select COUNVRT(varchar(12) , getdate(), 23 )2008-04 阅读全文
posted @ 2012-12-20 09:57 曹玉志 阅读(10708) 评论(0) 推荐(0) 编辑