摘要:
MERGE INTO vip_要修改数据表 AUSING vip_存储修改数据表 Ron (A.主外健关联 = R.主外健关联)WHEN MATCHED THENupdate set a.要修改字段 = r.存储数据字段; 阅读全文
摘要:
两种方法: 1.wm_concat 适用于12C以下版本,例如11G,10G select wm_concat(eb_lifetypeid) province_no from eb_lifetypevipdetail 2.listagg 通用版本,如果去重加distinct在19c之后版本才能适用 阅读全文
摘要:
有两种写法:写法一:over partition by 分析函数SELECT * FROM (select eb_vipcode,eb_time,MAX(eb_time) over(partition by eb_vipcode)as "atime" from eb_daskexpdateinfo) 阅读全文
摘要:
//流请求 static void Main(string[] args) { Console.WriteLine("Hello World!"); //Console.ReadLine(); List<EB_LOG> logs=new List<EB_LOG>(){ new EB_LOG (){ 阅读全文
摘要:
public static MemoryStream ToExcel<T>(List<T> list, string filePath = null) { var memoryStream = new MemoryStream(); IWorkbook workbook = new HSSFWork 阅读全文
摘要:
while (true) { using (ServerManager sm = ServerManager.OpenRemote("localhost")) { string poolname ="8080";//应用池名称 ApplicationPool appPool = sm.Applica 阅读全文
摘要:
//方法代码 MemoryStream ms = new MemoryStream(); byte[] buffer = null; using (ZipFile file = ZipFile.Create(ms)) { file.BeginUpdate(); file.NameTransform 阅读全文
摘要:
//对象转XML public static string ObjToXml(object obj) { using (MemoryStream Stream = new MemoryStream()) { XmlSerializer xml = new XmlSerializer(obj.GetT 阅读全文
摘要:
public static void AA() { //缓存 var data =GetCache( () => { //返回缓存的值 return "1111"; }, "key",//缓存的key 3 //缓存时间(分钟) ); string key = HttpRuntime.Cache["k 阅读全文
摘要:
--不同类型增加大字段项 alter table 表名 add 新增一个字段B clob; --将需要改成大字段的项内容copy到大字段中 update 表名 set 新增一个字段B=字段A; --将大字段名改成原字段名 alter table 表名 rename column 字段A to 字段A 阅读全文