N
NEWER USER
I have the following SQL that selects the TOP 10 clients by percentage of
sales. I want to be able to SELECT the TOP 20, TOP 40, TOP 60, etc.. by
entering a value when the query runs. How might I change my SQL? Any help
appreciated.
SELECT TOP 10 tblPct.ip, tblPct.Pct
FROM tblPct
ORDER BY tblPct.Pct DESC;
sales. I want to be able to SELECT the TOP 20, TOP 40, TOP 60, etc.. by
entering a value when the query runs. How might I change my SQL? Any help
appreciated.
SELECT TOP 10 tblPct.ip, tblPct.Pct
FROM tblPct
ORDER BY tblPct.Pct DESC;