lyft_functions

Provides list of functions supported by each Lyftron provider.

Examples

Select all functions which names differ in provider:

select *
  from sys.lyft_functions
 where function_name <> provider_function_name

Select all providers that support function FORMAT:

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