USP_SIMPLEDATALIST_FINANCIALINSTITUTIONBANKNAMES

This simple datalist returns all distinct constituent financial institution bank names.

Definition

Copy


CREATE procedure dbo.[USP_SIMPLEDATALIST_FINANCIALINSTITUTIONBANKNAMES]
as
  set nocount on;

  select distinct
    [ID] as [VALUE],
    [FINANCIALINSTITUTION] as [LABEL]
  from dbo.[FINANCIALINSTITUTION];

  return 0;