qua_functions#

Provides a list of functions supported by each data provider and their mapping to SQL Server functions.

Examples#

Select all functions which provider names differ from their SQL Server counterparts:

select *
  from sys.qua_functions
 where function_name <> provider_function_name

Select all providers that support function FORMAT:

select *
  from sys.qua_functions
 where function_name = 'FORMAT'