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

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "UPDATE" {bold} " changes the values of the columns specified for all rows which satisfy condition. Only the columns to be modified need appear as column. 
  2. Array references use the same syntax found in SELECT. That is, either single array elements, a range of array elements or the entire array may be replaced with a single query. 
  3. You must have write access to the table in order to modify it, as well as read access to any table whose values are mentioned in the WHERE condition. 
  4. " {} "Synopsis" {bold} "
  5. " {} "
  6. UPDATE table SET column = expression [, ...]
  7.     [ FROM fromlist ]
  8.     [ WHERE condition ]
  9.     
  10. " {code} "Usage" {bold} "
  11. " {} "
  12.    --Change word "Drama" with "Dramatic" on column kind:
  13.    --
  14.    UPDATE films 
  15.       SET kind = 'Dramatic'
  16.       WHERE kind = 'Drama';
  17.    SELECT * FROM films WHERE kind = 'Dramatic' OR kind = 'Drama';
  18.    code |title        |did| date_prod|kind      |len
  19.    -----+-------------+---+----------+----------+------
  20.    BL101|The Third Man|101|1949-12-23|Dramatic  | 01:44
  21.    P_302|Becket       |103|1964-02-03|Dramatic  | 02:28
  22.    M_401|War and Peace|104|1967-02-12|Dramatic  | 05:57
  23.    T_601|Yojimbo      |106|1961-06-16|Dramatic  | 01:50
  24.    DA101|Das Boot     |110|1981-11-11|Dramatic  | 02:29
  25.    
  26. " {code} "Compatibility" {bold} "
  27. SQL92 
  28. SQL92 defines a different syntax for positioned UPDATE statement: 
  29. " {} "
  30.    UPDATE table SET column = expression [, ...]
  31.           WHERE CURRENT OF cursor
  32.         
  33. " {code} "where cursor identifies an open cursor. "