create_view.sql
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:0k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. --
  2. -- VIRTUAL CLASS DEFINITIONS
  3. -- (this also tests the query rewrite system)
  4. --
  5. CREATE VIEW street AS
  6.    SELECT r.name, r.thepath, c.cname AS cname 
  7.    FROM road r, real_city c
  8.    WHERE c.outline ## r.thepath;
  9. CREATE VIEW iexit AS
  10.    SELECT ih.name, ih.thepath, 
  11. interpt_pp(ih.thepath, r.thepath) AS exit
  12.    FROM ihighway ih, ramp r
  13.    WHERE ih.thepath ## r.thepath;
  14. CREATE VIEW toyemp AS
  15.    SELECT name, age, location, 12*salary AS annualsal
  16.    FROM emp;