Is it possible to use select TOP and distinct in the same query?  I don't
want to use maxrows=100 because it returns the whole recordset and discards
records 101 and higher, which is not ideal.  Here is the call:

<cfquery datasource="shared" name="Search">
        Select TOP 100 Distinct B.TopicID, B.ForumID,B.LastMessageDate
        From Messages A,Topics B
        Where a.isapproved = 'y'
                and B.TopicID = A.TopicID AND b.forumid = a.forumid
                AND DateDiff(d, A.MessageDate, #TDay#) < 3
                and (B.station='#thestation#' or B.station='ALL')
        Order By B.Lastmessagedate desc</cfquery>

Thanks In Advance...
Robert Forsyth
Director of Internet Operations
ABC 7
202-364-7831 (direct)
202-364-7885 (fax)
http://www.wjla.com

______________________________________________________________________
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to