• Thanks for the reply.

    Here is what I have got working so far
    CREATE PROCEDURE [pr_Prize_Winner]
    AS
    SELECT TOP 1
    u.[User_ID], u.[first_name], u.[last_name]
    FROM [User] u, [Issue] i
    WHERE u.[User_ID]=i.[Reporter_ID]
    AND i.[Date_Submitted] BETWEEN DATEADD(DAY, -7, GETDATE()) AND GETDATE()
    AND u.[HRD_Staff]='0'
    ORDER BY NEWID()

    So how do I edit this to store the result generated in the User_ID field into a table containing the 3 columns listed above.

    Many thanks,

    Ben