I have this query and I can't seem to figure out how to use it in combination with order by. This is the query:
UPDATE TOP 100 Kist SET Stapel ='" + Stapel + "' WHERE Row ='" + Row + "'"
Each row in 'kist' has a date and I want to order my update statement by using those dates. Like so:
UPDATE TOP 100 Kist SET Stapel ='" + Stapel + "' WHERE Row ='" + Row + "'"
ORDER BY Date ASC
But this does not work.
Any help would be much appreciated.