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

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "  The " {} "Sequences" {bold} " tab is used to
  2. define new sequence number generators or to inspect them.
  3.   Sequences are used sometimes for assigning default values to some unique
  4. fields in order to obtain a unique id. Sequences are returning an int4
  5. value. For example, a new sequence will be automatically defined if you
  6. are adding a 'serial' field type into a table.
  7.   In order to define a new sequence you should supply at least the sequence
  8. name. The default increment is 1, the default start value and minvalue is 1.
  9.   Inspecting a sequence will show you the last number generated.
  10.   
  11.   For more information see also " {} "CREATE SEQUENCE" {link create_sequence} 
  12. " SQL command." {}