
数据库
文章平均质量分 74
c_huabo
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
关于"ORA-00942 表或视图不存在" 问题的解决方法
在auth用户下有一表AUTH_ORG_FRAM:SELECT ORG_ID AS ID_ORGUNIT, ORG_NAME AS NAME, ID_PARENTORGUNIT, ORGCODE, PARENTORGUNITCODE, CODE,原创 2015-06-30 11:20:37 · 65565 阅读 · 1 评论 -
万能的HashMap
万能的HashMap:如果有有函数要把一个整变量total,和记录集List返回,本来想定义为这种样子: Map> getEmpInfoList(String orgId,int page,int rows){}这样可以返回map,但在调用后要取出里面的内容,就得用json形式来解析,好麻烦,这时,就可以用Map来定义,再根据key来取出里面的内容,好方便... //根据orgId原创 2016-05-19 11:59:19 · 535 阅读 · 0 评论 -
oracle行转为列的方法:
今天遇到了行转为列的问题,在网上搜到一个经典的例子又一个示例:create table dd_app.bb AS(select '01' no,'ss' name, 10 jiner,'麦子' you from dual union allselect '02' no,'dd' name, 11 jiner,'萝卜' you from dual union allselect原创 2016-05-19 12:09:29 · 521 阅读 · 0 评论 -
关于在cygwin下编译redis出错“Makefile:228: recipe for target 'geohash_helper.o' failed"的解决方法
在cygwin下编译redis4.0.8时,报错:Makefile:228: recipe for target 'geohash_helper.o' failedmake[1]: *** [geohash_helper.o] Error 1make[1]: Leaving directory '/redis408/src'Makefile:6: recipe for target 'all' f...原创 2018-05-25 10:38:27 · 5544 阅读 · 0 评论