Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » SQL Anywhere Server - SQL Reference » SQL Functions » Alphabetical list of functions

TRACED_PLAN function [Miscellaneous] Next Page

TRANSACTSQL function [Miscellaneous]


Takes a Watcom-SQL statement and rewrites it in the Transact-SQL dialect.

Syntax

TRANSACTSQL( sql-statement-string )

Parameters

sql-statement-string    The SQL statement that the function uses to determine its dialect.

See also
Standards and compatibility
Example

The following statement returns the string 'SELECT EmployeeName=empl_name FROM Employees'.

SELECT TRANSACTSQL( 'SELECT empl_name as EmployeeName FROM Employees' ) FROM dummy;