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

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "CREATE TABLE AS" {bold} " CREATE TABLE AS enables a table to be created from the contents of an existing table. It has functionality equivalent to SELECT TABLE INTO, but with perhaps a more obvious syntax. 
  2. " {} "Synopsis" {bold} "
  3. " {} "
  4. CREATE TABLE table [ (column [, ...] ) ]
  5.      AS select_clause
  6. " {code} "Inputs" {bold} "
  7. " {} "table" {italic} "
  8.        The name of a new table to be created. 
  9. " {} "column" {italic} "
  10.        The name of a column. Multiple column names can be specified using a comma-delimited list of column names. 
  11. " {} "select_clause" {italic} "
  12.        A valid query statement. Refer to SELECT for a description of the allowed syntax. 
  13. " {} "Outputs" {bold} "
  14. Refer to CREATE TABLE and SELECT for a summary of possible output messages. "