2014年1月9日

Oracle常用函数

摘要: --字符函数select upper('itmyhome') from dual; --将小写转换成大写select lower('HELLO') from dual; --将大写转换成小写select initcap('beijing') from dual; --首字母大写select conc... 阅读全文

posted @ 2014-01-09 17:59 itmyhome 阅读(175) 评论(0) 推荐(0) 编辑

Oracle中复制表结构和表数据

摘要: 一、复制表结构及其数据 create table new_table as (select * from old_table);二、只复制表结构create table new_table as (select * from old_table where 1=2);三、只复制表数据如果两个表结构一... 阅读全文

posted @ 2014-01-09 14:42 itmyhome 阅读(153) 评论(0) 推荐(0) 编辑

导航