Specifies that the functions that match those supported by SAS should be passed to the data source.
| Valid in: | LIBNAME statement |
| Default: | NONE |
| Supports: | DB2 under UNIX and PC, Greenplum, MySQL, ODBC, Oracle, Teradata |
specifies that functions that match those that are supported by SAS should be passed to the data source.
| DATE | TODAY | QTR | COMPRESS | SUBSTR |
| DATEPART | DAY | SECOND | INDEX | TRANWRD |
| DATETIME | HOUR | WEEKDAY | LENGTH | TRIMN |
| TIME | MINUTE | YEAR | REPEAT | MOD |
| TIMEPART | MONTH | BYTE | SOUNDEX |
proc sql; select distinct DATE () from x.test; quit;