move is null

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hey all,
i have a query that i bind to my dataset/datagrid that uses the WITH ROLLUP
keyword, so the totals show up at the top of the table. does someone know of
a clever way to move that 1st row to the bottom of the grid?

thanks,
rodchar
 
U¿ytkownik "rodchar said:
hey all,
i have a query that i bind to my dataset/datagrid that uses the WITH
ROLLUP
keyword, so the totals show up at the top of the table. does someone know
of
a clever way to move that 1st row to the bottom of the grid?

Try to sort the query:

SELECT ProductID, SUM(UnitPrice) AS UnitPrice
FROM Sales.SalesOrderDetail
GROUP BY ProductID WITH ROLLUP
ORDER BY ProductID
 
thank you.

Jacek Stawicki said:
Try to sort the query:

SELECT ProductID, SUM(UnitPrice) AS UnitPrice
FROM Sales.SalesOrderDetail
GROUP BY ProductID WITH ROLLUP
ORDER BY ProductID
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top