会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
dreamttt
博客园
首页
新随笔
联系
管理
订阅
2020年1月2日
SQL 年-月-周 不重复
摘要: with temp as( select * from ( SELECT TRUNC(to_date('2020'||'01-01','yyyy-mm-dd'), 'YYYY') + ROWNUM - 1 as day FROM DUAL CONNECT BY ROWNUM <= ADD_MONTH
阅读全文
posted @ 2020-01-02 17:20 dreamttt
阅读(126)
评论(0)
推荐(0)
2019年12月10日
JS实现数组随机排序
摘要: 1 // 方法1 2 function method1(arr){ 3 for(var i=0,len=arr.length;i<len;i++){ 4 var a=parseInt(Math.random()*len); 5 var temp=arr[a]; 6 arr[a]=arr[i]; 7
阅读全文
posted @ 2019-12-10 20:19 dreamttt
阅读(7353)
评论(0)
推荐(0)
使用wm_concat() 报错:不存在的LOB值
摘要: 在两个临时表temp、temp1中,其中temp使用了wm_concat() 函数,并用to_char()函数对合并的字段进行了转换,当两个表关联的时候,报错“不存在的LOB值”。 百度了下是因为wm_concat() ,wm_concat()在比较高的版本上返回的是clob类型。 解决办法:在临时
阅读全文
posted @ 2019-12-10 15:32 dreamttt
阅读(3012)
评论(0)
推荐(0)
公告