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

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "SELECT INTO" {bold} " creates a new table from the results of a query. Typically, this query draws data from an existing table, but any SQL query is allowed. 
  2. " {} "Synopsis" {bold} "
  3. " {} "
  4. SELECT [ ALL | DISTINCT ] expression [ AS name ] [, ...]
  5.     INTO [TEMP] [ TABLE ] new_table ]
  6.     [ FROM table [alias] [, ...] ]
  7.     [ WHERE condition ]
  8.     [ GROUP BY column [, ...] ]
  9.     [ HAVING condition [, ...] ]
  10.     [ { UNION [ALL] | INTERSECT | EXCEPT } select]
  11.     [ ORDER BY column [ ASC | DESC ] [, ...] ]
  12.     [ FOR UPDATE [OF class_name...]]
  13.     [ LIMIT count [OFFSET|, count]]
  14.     
  15. " {code} "Note" {bold} "
  16. CREATE TABLE AS is functionally equivalent to the SELECT INTO command. "