USP_DATALIST_STUDENT

Returns all Student records.

Definition

Copy


CREATE procedure dbo.USP_DATALIST_STUDENT
as
    set nocount on;

    select 
        STUDENT.[ID],
        STUDENT.[STUDENTID]
    from 
        dbo.STUDENT