move is null

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
 
J

Jacek Stawicki

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
 
G

Guest

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

Members online

Forum statistics

Threads
474,431
Messages
2,571,679
Members
48,796
Latest member
Greg L.

Latest Threads

Top