USP_DATALIST_WEALTHESTIMATORRATINGS

Returns a list of all wealth estimator ratings in the system.

Definition

Copy


                CREATE procedure dbo.USP_DATALIST_WEALTHESTIMATORRATINGS
                as
                    set nocount on;

                    select
                        WER.ID,
                        WER.SCORE,
                        WER.RANGE,
                        WER.MINIMUMAMOUNT
                    from
                        dbo.WEALTHESTIMATORRATING WER
                    order by
                        WER.SCORE asc;