PavelGur
Programmer
- Sep 21, 2001
- 75
I'm running the following query from time to time and though I specified "ORDER BY Stock, Date" it is always coming in Date sequence disregarding the Stock field.
Does anybody know what is the problem.
Thanks, Pavel.
Code:
SELECT *
FROM Advice
WHERE (Date>#3/27/2007 16:00:00#) AND (ProjPercent > .03) AND ( RankParm >5000) AND (((Price - ProjMin) /( ProjMin + .01)) < .02)
ORDER BY Stock, Date
Thanks, Pavel.