SQL GrammarCommands (Data Manipulation)Commands (Data Definition)Commands (Other)Other GrammarSystem Tables
Information Schema ${item.topic}${item.syntax} ${item.text} Example:${item.example} ${item.topic}${item.syntax} ${item.text} Example:${item.example} Information Schema
The system tables in the schema
Range TableThe range table is a dynamic system table that contains all values from a start to an end value. The table contains one column called X. Both the start and end values are included in the result. The table is used as follows: SELECT X FROM SYSTEM_RANGE(1, 10); |