
Oracle
文章平均质量分 58
LoveJava520
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
oracle table
create table product( Product_id varchar2(10) not null, Product_name varchar2(20), ProductPrice number(8,2), Quantity number(10),原创 2011-06-06 23:29:00 · 481 阅读 · 0 评论 -
学习oracle 创建db和创建用户
1. 学习oracle 创建db和创建用户 (1)oracle 创建db方法:开始-->程序-->Oracle - Oracle Db10g_houme1-->配置和 移植工具-->Database Configuration Assi原创 2011-08-14 23:28:18 · 838 阅读 · 0 评论 -
sql
select a.year, (select sum(fee) from test b where b.year from test a create table test( year varchar(8), fee numb原创 2011-08-10 09:24:15 · 406 阅读 · 0 评论 -
oracle 报告
一、table1、说明:创建数据库 语法:create table table_name( Column_name1 datatype [null | not null], Column_name2 datatype [null | not null],原创 2011-06-06 23:34:00 · 651 阅读 · 0 评论 -
oracle table
create table product( Product_id varchar2(10) not null, Product_name varchar2(20), ProductPrice number(8,2), Quantity number(10),原创 2011-06-06 23:29:00 · 451 阅读 · 0 评论 -
oracle table
create table product( Product_id varchar2(10) not null, Product_name varchar2(20), ProductPrice number(8,2), Quantity number(10),原创 2011-06-06 23:29:00 · 378 阅读 · 0 评论 -
oracle table
create table product( Product_id varchar2(10) not null, Product_name varchar2(20), ProductPrice number(8,2), Quantity number(10),原创 2011-06-06 23:29:00 · 392 阅读 · 0 评论 -
oracle table
create table product( Product_id varchar2(10) not null, Product_name varchar2(20), ProductPrice number(8,2), Quantity number(10),原创 2011-06-06 23:29:00 · 460 阅读 · 0 评论 -
oracle table
create table product( Product_id varchar2(10) not null, Product_name varchar2(20), ProductPrice number(8,2), Quantity number(10),原创 2011-06-06 23:29:00 · 465 阅读 · 0 评论 -
oracle 报告
一、table1、说明:创建数据库 语法:create table table_name( Column_name1 datatype [null | not null], Column_name2 datatype [null | not null],原创 2011-06-06 23:33:00 · 763 阅读 · 0 评论 -
oracle table
create table product( Product_id varchar2(10) not null, Product_name varchar2(20), ProductPrice number(8,2), Quantity number(10),原创 2011-06-06 23:29:00 · 376 阅读 · 0 评论 -
oracle table
create table product( Product_id varchar2(10) not null, Product_name varchar2(20), ProductPrice number(8,2), Quantity number(10),原创 2011-06-06 23:29:00 · 393 阅读 · 0 评论 -
oracle table
create table product( Product_id varchar2(10) not null, Product_name varchar2(20), ProductPrice number(8,2), Quantity number(10),原创 2011-06-06 23:29:00 · 502 阅读 · 0 评论 -
Oracle 按照指定顺序排列方法
select t.*from tb_user t --排序顺序by id 3 1 4 2 5select id, name from tb_user where id in ('1', '2', '3', '4','5') order by (case id when '3' then 'A'原创 2011-11-14 23:22:59 · 1372 阅读 · 0 评论