James Harvey wrote on 2012-05-16: > This select generates an error message "Command contains unrecognized > phrase/keyword". > > SELECT hip_no, amount, name top 5 FROM stnhorse WHERE amount <> 0 AND > SUBSTR(hip_no,1,1) <> "R" ORDER BY hip_no desc > > > This select creates the cursor successfully. > > SELECT hip_no, amount, name as horse top 5 FROM stnhorse WHERE amount <> 0 > AND SUBSTR(hip_no,1,1) <> "R" ORDER BY hip_no desc > > The only difference is the "name as horse" column designation before the Top > 5 condition, why does this make the select run? > > James E Harvey
James, Does changing your select to this work? SELECT top 5 hip_no, amount, name FROM stnhorse WHERE amount <> 0 AND SUBSTR(hip_no,1,1) <> "R" ORDER BY hip_no desc I would suspect the parser is having trouble with the keyword name and top being side by side. Tracy Pearson PowerChurch Software _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/[email protected] ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

