select prod_id,substr(prod_date,5,2),round(sum(prod_amt)/10000,0) from temp_table group by cube(prod_id,substr(prod_date,5,2)); ...
分类:
数据库 时间:
2017-05-16 11:12:03
阅读次数:
188
字符编码 我们已经讲过了,字符串也是一种数据类型,但是,字符串比较特殊的是还有一个编码问题。 因为计算机只能处理数字,如果要处理文本,就必须先把文本转换为数字才能处理。最早的计算机在设计时采用8个比特(bit)作为一个字节(byte),所以,一个字节能表示的最大的整数就是255(二进制1111111 ...
分类:
编程语言 时间:
2017-05-14 01:07:57
阅读次数:
229
cleanup属性:当变量离开它的作用域时,设置的cleanup_function函数将被调用。 cleanup (cleanup_function) The cleanup attribute runs a function when the variable goes out of scope. ...
分类:
其他好文 时间:
2017-04-30 01:08:18
阅读次数:
266
怎么理解token,tokenize,tokenizer?(https://zhidao.baidu.com/question/265411985659520925.html) 这只是当个人笔记使用 ...
分类:
其他好文 时间:
2017-04-28 10:25:34
阅读次数:
171
不管你们喜欢myeclipse、eclipse还是什么其他什么开发工具,反正我最喜欢用idea *—_—* ...
分类:
其他好文 时间:
2017-04-27 17:58:27
阅读次数:
396
select isnull(b.guid,k.guid) as project_id,isnull(b.projectno,k.projectno) as projectno, isnull(b.projectname,k.projectname) as projectname,c.COMPANYN ...
分类:
数据库 时间:
2017-04-25 16:51:46
阅读次数:
198
public static class FileHelper { #region 检测指定目录是否存在 /// /// 检测指定目录是否存在 /// /// 目录的绝对路径 public static bool IsExistDirectory... ...