I'm using a product sitting on top of SQL CE that allows me to run an SQL query. The following query runs on the same table in SQL Std just fine but throws an error (which is hidden by the product I am working with), under CE. Can someone point out what might not be supported under CE for the following script?
Much thanks in advance,
Paul
Code:
SELECT TOP 1 [Class],
from ANSIPole
where Species = 'DF' AND
Length = 70 AND
Butt_Circ <= 54 AND
Top_Circ <= 29
Order by Species, Length, Butt_Circ Desc, Top_Circ DESC
Much thanks in advance,
Paul