"DeleteTab" Stored Procedure

Description:

This stored procedure deletes the selected tab from the portal. The input parameter is TabID, the primary key for the record.

Definition:
    
    CREATE PROCEDURE DeleteTab
    (
        @TabID int
    )
    AS

    DELETE FROM
        Tabs

    WHERE
        TabID = @TabID
        
Database Tables Used:

Tabs:  Each record in the Tabs table defines the name and access permissions for a tab in the selected portal. The primary key in this table is the TabID identity field.