Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Returning top 3 records

    This query will do the trick.

    Thanks all for your help.

    SELECT *

    FROM wellprod t1

    WHERE EXISTS

    (

    SELECT 1

    FROM

    (

    ...

  • RE: Returning top 3 records

    Here is some sample data. The records with the "*" at the end are the ones I want the query to return. (ie. the first 3 records, if...

Viewing 2 posts - 1 through 2 (of 2 total)