"GetSingleContact" Stored Procedure

Description:

This stored procedure returns a single contact item from the database. The input parameter is ItemID, the primary key for the record. The return values include the contact details, as well as information about the users that created and last edited this item.

This stored procedure is used by the edit page for Contacts.

Definition:
    
    CREATE PROCEDURE GetSingleContact
    (
        @ItemID int
    )
    AS

    SELECT
        CreatedByUser,
        CreatedDate,
        Name,
        Role,
        Email,
        Contact1,
        Contact2

    FROM
        Contacts

    WHERE
        ItemID = @ItemID
        
Database Tables Used:

Contacts:  Each record in the Contacts table is a single item, as displayed by the Contacts Portal Module. Since all Contacts modules store their record in this table, each item contains a ModuleID to permit related items to be retrieved in a single query.

The primary key in this table is the ItemID identity field.