SqlClause, represents common SQL clauses.
Namespace: P4s3FilterToolsAssembly: P4s3FilterTools (in P4s3FilterTools.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Members
| Member name | Value | Description | |
|---|---|---|---|
| NONE | -1 | Represents no clause. | |
| SELECT | 1 | Represents a select clause. | |
| WHERE | 2 | Represents a where clause. | |
| FROM | 3 | Represents a from clause. | |
| GROUP_BY | 4 | Represents a group by clause. | |
| ORDER_BY | 5 | Represents an order by clause. | |
| HAVING | 6 | Represents a having clause. | |
| SUB_QUERY | 7 | Used to represent the filter's main where clause or a filter, statistic combined where clause. The entire SQL statement is set to a sub query clause type. | |
| CORE_WHERE | 8 | Used to represent a core filter criteria SqlQuery object. | |
| CORE_SELECT | 9 | Used to represent a core statistic select SqlQuery object. |
See Also