Difference between revisions of "SQLCNT"

From Lianjapedia
Jump to: navigation, search
 
Line 21: Line 21:
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:SQL]]
 
[[Category:SQL]]
[[Category:Pseudo Columns]]
 

Latest revision as of 09:52, 4 February 2013

Purpose

Return the number of rows affected by the last SQL statement

Syntax

SQLCNT

See Also

PSEUDO COLUMNS, INSERT, SELECT, UPDATE

Description

SQLCNT will return the number of rows affected by the last SQL statement. For example, after a SELECT statement, SQLCNT will contain the number of rows selected.

Example

OPEN DATABASE southwind
SELECT * FROM example WHERE state = "MA"
? sqlcnt
        17