• Assuming this is a serious question...

    Since I'm unclear what you're asking, I'll tell you how to define parameters for your procedure. Assume you want to pass a column called ID to a procedure. You'd do this:

    CREATE PROCEDURE dbo.MyProc

    (@ID int)

    AS...

    The parameter is @ID. It's defined as an integer.

    Is that what you're looking for?

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning