D
Debbie
I need a page to display a list of distinct records with a
count beside each one. I used the following in a custom
query and it works great. I just want it to "order" them
by the count. Anyway to do this? I tried changing the
order by to "pagecnt" but I get a too few paremeters error.
SELECT dt.page, Sum(1) AS pagecnt
FROM dt
GROUP BY dt.page
ORDER BY dt.page;
count beside each one. I used the following in a custom
query and it works great. I just want it to "order" them
by the count. Anyway to do this? I tried changing the
order by to "pagecnt" but I get a too few paremeters error.
SELECT dt.page, Sum(1) AS pagecnt
FROM dt
GROUP BY dt.page
ORDER BY dt.page;