Difference between revisions of "CURSYNCNUM()"

From Lianjapedia
Jump to: navigation, search
Line 6: Line 6:
  
 
==See Also==
 
==See Also==
[[SQL INSERT|INSERT]], [[SQL Pseudo Columns|PSEUDO COLUMNS]], [[RECNO()]], [[ROWNUM()]], [[SQL SELECT|SELECT]], [[SYNCNUM()]], [[SQL UPDATE|UPDATE]]
+
[[SQL INSERT|INSERT]], [[PSEUDO COLUMNS]], [[RECNO()]], [[ROWNUM()]], [[SQL SELECT|SELECT]], [[SYNCNUM()]], [[SQL UPDATE|UPDATE]]
  
 
==Description==
 
==Description==
Line 22: Line 22:
 
[[Category:SQL]]
 
[[Category:SQL]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:Table Basics]]
 
[[Category:Table Basics Functions]]
 
 
[[Category:Cursor Functions]]
 
[[Category:Cursor Functions]]

Revision as of 09:59, 4 February 2013

Purpose

Function to return the current (last assigned) unique sequence number assigned to a row in the specified table

Syntax

CURSYNCNUM([<workarea | alias>])

See Also

INSERT, PSEUDO COLUMNS, RECNO(), ROWNUM(), SELECT, SYNCNUM(), UPDATE

Description

The CURSYNCNUM() function returns the current (last assigned) unique sequence number assigned to a row in the specified table. The CURSYNCNUM() function operates on the current workarea unless a numeric <workarea> or character <alias> is specified.

Each new row inserted into a table will be assigned a unique sequence number for that table. Even if the row is deleted later or if all the rows are deleted from the table, that number will not be issued again.

Example

OPEN DATABASE southwind
SELECT distinct cursyncnum() FROM example