SqlClause EnumerationA Sandcastle Documented Class Library
SqlClause, represents common SQL clauses.

Namespace: P4s3FilterTools
Assembly: P4s3FilterTools (in P4s3FilterTools.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public enum SqlClause
Members

  Member nameValueDescription
NONE-1 Represents no clause.
SELECT1 Represents a select clause.
WHERE2 Represents a where clause.
FROM3 Represents a from clause.
GROUP_BY4 Represents a group by clause.
ORDER_BY5 Represents an order by clause.
HAVING6 Represents a having clause.
SUB_QUERY7 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_WHERE8 Used to represent a core filter criteria SqlQuery object.
CORE_SELECT9 Used to represent a core statistic select SqlQuery object.
See Also