摘要:
下面开始记录一下,自己在Oracle或者PLSQL常用的几个函数, 1add_months 增加或减去月份2. last_day(sysdate) 返回日期的最后一天3. months_between (date2,date1) 给出date2-date1的月份4. new_time (date,' 阅读全文
摘要:
函数由五部分组成 函数名 参数 返回值 实现 访问修饰符 public void function(object[] values,int index ,string str) { //这里面写函数处理代码 } C#中的函数Format() 这是一个格式化函数,它跟C语言中的printf(),sca 阅读全文
摘要:
select 字段 from 表名 where ARCHIVAL_CODE like '%-长期-%' 查询字段里面包含长期数据 insert into table (字段1,字段2,字段3,……)values (数值1,数值2,数值3,……); 插入一条记录 delete from 表名 wher 阅读全文
摘要:
第一种方法 string s=abcdeabcdeabcde; string[] sArray=s.Split('c') ; foreach(string i in sArray) Console.WriteLine(i.ToString()); 输出下面的结果: ab deab deab de 第 阅读全文
摘要:
C# 性能优化——三种字符串拼接效率 字符串拼接主要包括三类:+,String.Format(),StringBuilder.Append() 1)对于少量固定的字符串拼接,如string s= "a" + "b" + "c",系统会优化成s= String.Concat("a","b","c"), 阅读全文