Create intermediate table for calculation : Create Table « Table « Oracle PL / SQL






Create intermediate table for calculation

   

SQL> create table emp(
  2           emp_no                 integer         primary key,
  3           lastname               varchar2(20)    not null,
  4           firstname              varchar2(15)    not null,
  5           midinit                varchar2(1),
  6           street                 varchar2(30),
  7           city                   varchar2(20),
  8           state                  varchar2(2),
  9           zip                    varchar2(5),
 10           shortZipCode                   varchar2(4),
 11           area_code              varchar2(3),
 12           phone                  varchar2(8),
 13           salary                 number(5,2),
 14           birthdate              date,
 15           startDate              date,
 16           title                  varchar2(20),
 17           dept_no                integer,
 18           mgr                    integer,
 19           region                 number,
 20           division               number,
 21           total_sales            number
 22  );

Table created.

SQL> -- emp Table Inserts:
SQL> insert into emp(emp_no, lastname, firstname, midinit, street, city, state, zip,shortZipCode, area_code, phone, birthdate, title)values
  2                      (1,'Z','Joy','R','1 Ave','New York','NY','12122','2333','212','200-1111','12-nov-1976','President');

1 row created.

SQL> insert into emp(emp_no, lastname, firstname, midinit, street, city, state, zip,shortZipCode, area_code, phone, salary, birthdate, startDate,title, dept_no, mgr, region, division, total_sales)valu
es
  2                      (2,'X','Lucy','J','1 Street','New York','NY','43552','6633','212','234-4444',7.75,'21-mar-1976','1-feb-1994','Sales Manager',2,1,100,10,40000);

1 row created.

SQL> insert into emp(emp_no, lastname, firstname, midinit, street, city, state, zip,shortZipCode, area_code, phone, salary, birthdate, startDate,title, dept_no, mgr, region, division, total_sales)valu
es
  2                      (3,'Y','Jordan','E','1 Drive','New York','NY','76822','8763','212','222-2222',7.75,'14-feb-1963','15-mar-1995','Sales Clerk',2,2,100,10,10000);

1 row created.

SQL>
SQL> create table avg_sal
  2  as select avg(salary) AS avg_Sal from emp;



SQL>
SQL>
SQL> select lastname, salary,
  2  CASE WHEN salary > avg_sal THEN '> Average of ' || to_char(avg_sal, '99.99')
  3       WHEN salary < avg_sal THEN '< Average of ' || to_char(avg_sal, '99.99')
  4       ELSE '= Average of ' || to_char(avg_sal, '99.99')
  5       END
  6  from emp, avg_sal
  7  /

   
    
    
  








Related examples in the same category

1.Create table template
2.Create table with data type: VARCHAR2, Date, Number(8,2)
3.Using a CREATE TABLE statement: create a table with primary key
4.Creating Table with combined primary key
5.Create table with foreign key
6.Creating an index-organized table
7.create as select
8.create as select, then add primary key
9.CREATE TABLE AS SELECT with where clause
10.Creating Table and indicate tablespace
11.An example of creating an index-organized table:
12.Create a table with 'deferrable initially immediate'
13.include a complete CREATE INDEX clause as part of the CREATE TABLE statement
14.Create a table by specifying the storage settings
15.Create a table with ORGANIZATION INDEX
16.Use 'using index' option when creating a table
17.Create a table and set storage FREELISTS 2
18.Create a table with 'overflow INCLUDING y'
19.Create table with Check Constraints
20.Create table with Unique Constraints
21.Creating an External Table
22.A create-table statement with the attributes of ISBN, title, author, and publisher. The primary key is the ISBN attribute.
23.Create table with three columns
24.Create an external table