Chinaunix首页 | 论坛 | 博客
  • 博客访问: 156239
  • 博文数量: 50
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 470
  • 用 户 组: 普通用户
  • 注册时间: 2013-01-10 10:46
文章分类

全部博文(50)

文章存档

2019年(3)

2018年(3)

2017年(2)

2016年(5)

2015年(3)

2014年(1)

2013年(33)

我的朋友

发布时间:2014-02-10 13:14:37

select  regexp_substr('1,2,3,4,5,6','[^,]+',1,rownum) remindId,1  remindTypefrom dual connect by rownum <=length('1,2,3,4,5,6')-length(replace('1,2,3,4,5,6',',',''))+1......【阅读全文】

阅读(976) | 评论(0) | 转发(0)

发布时间:2013-11-18 11:42:25

问题create table abc(A int,B int) Select A,count(B) as total from ABC group by ASelect A,count(B) as total1 from ABC where B > 30 group by ASelect A,count(B) as totlal2 from ABC where B > 20 group by A如何合并这三个查询?得到一个查询结果:A,total,total1,total2解决方案:Select A,count(B) .........【阅读全文】

阅读(840) | 评论(0) | 转发(0)

发布时间:2013-10-29 21:15:47

打开终端,切换到oracle用户。创建数据库:dbca......【阅读全文】

阅读(1902) | 评论(0) | 转发(0)

发布时间:2013-10-04 00:33:20

表t_users(用户)字段类型是否为空user_idnumberpkuser_namevarchar2(20)   not nulluser_agenumbernot null.........【阅读全文】

阅读(441) | 评论(0) | 转发(0)

发布时间:2013-10-03 01:00:11

备份分两大类:逻辑备份、物理备份。物理备份又分:冷备份、热备份。一、逻辑备份打开cmd.执行以下命令1.例如:exp    system/12345@test   file="d:/dfe/mydb.dmp";命令格式:exp         /@      file="......【阅读全文】

阅读(542) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册