04 2015 档案
摘要:新增字段,默认其他字段计算 ALTER TABLE 表名 add 字段名 as 字段名1+字段名2 SQL查看变量的数据类型 DECLARE @Sum int--SET @Sum = 0SELECT @Sum, CAST(SQL_VARIANT_PROPERTY(@Sum, 'BaseType')
阅读全文
摘要:SELECT TBCITY.code collate Chinese_PRC_BIN FROM TBCITYcollate Chinese_PRC_BIN,指定按某种方式排序
阅读全文
摘要:SELECT * from TBCITY_Temp where codein ( select code from TBCITY_Temp group by code having count(code) > 1 ) and AutoId not in (select min(AutoId) f...
阅读全文
摘要:class SocketHelper { public delegate void Uplistbox(string txt); public Uplistbox uplb; //更新listbox委托变量 protected static readonly ILog logger = LogMan...
阅读全文
摘要:javascript打印-打印页面设置-打印预览代码 ===================================================================关于这个组件还有其他的用法,列举如下: WebBrowser.ExecWB(1,1) 打开 ...
阅读全文