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

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "CREATE VIEW" {bold} " will define a view of a table. This view is not physically materialized. Specifically, a query rewrite retrieve rule is automatically generated to support retrieve operations on 
  2. views. 
  3. " {} "Synopsis" {bold} "
  4. CREATE VIEW view
  5.     AS SELECT query
  6. " {} "Usage" {bold} "
  7. Create a view consisting of all Comedy films: 
  8. " {} "
  9. CREATE VIEW kinds AS
  10.     SELECT *
  11.     FROM films
  12.     WHERE kind = 'Comedy';
  13. SELECT * FROM kinds;
  14. code |title                    |did| date_prod|kind      |len
  15. -----+-------------------------+---+----------+----------+------
  16. UA502|Bananas                  |105|1971-07-13|Comedy    | 01:22
  17. C_701|There's a Girl in my Soup|107|1970-06-11|Comedy    | 01:36
  18. " {code} "Notes" {bold} "
  19. Use the DROP VIEW statement to drop views. "