ASA SQL Reference
SQL Functions
Alphabetical list of functions
Takes a Watcom-SQL statement and rewrites it in the Transact-SQL dialect.
TRANSACTSQL( sql-statement-string )
SQL/92 Vendor extension.
SQL/99 Vendor extension.
Sybase Not supported by Adaptive Server Enterprise.
SQLDIALECT function [Miscellaneous]
WATCOMSQL function [Miscellaneous]
The following statement returns the string 'select EmployeeName = empl_name from employee'
.
SELECT TRANSACTSQL( 'SELECT empl_name as EmployeeName FROM employee' ) FROM dummy