Reference Guide > TDV Query Engine Options > SELECT Options > STRICT (SELECT Option)
 
STRICT (SELECT Option)
STRICT prevents the query engine from pushing aspects of SQL (such as mathematical and string functions, and the Oracle POSITION function) to the underlying data source when the source does not adhere to strict SQL 92 behavior. This could affect performance. If STRICT is not specified, the query engine relaxes SQL 92 rules to achieve more push.
Note: When SELECT options are specified as part of a subquery or subselect, they might not affect the root-level query execution plan.
Operator
SELECT
Syntax
strict
Example
SELECT {OPTION strict} TAN(column1) FROM table1