I'm reading through some old code at work, and have noticed that there are several views with an order by 1 clause. What does this accomplish?
Example:
Create view v_payment_summary AS
SELECT A.PAYMENT_DATE,
(SELECT SUM(paymentamount)
FROM payment B
WHERE = PAYMENT_DATE = B.PAYMENT_DATE
and SOME CONDITION) AS SUM_X,
(SELECT SUM(paymentamount)
FROM payment B
WHERE = PAYMENT_DATE = B.PAYMENT_DATE
and SOME OTHER CONDITION) AS SUM_Y
FROM payment A
ORDER BY 1;
ORDER BYin aVIEW. Standard SQL does not allow it. SQL Server has outlawed it since 2005. For SQL implementation that do allow it the behaviour is largely undocumented and counter intuitive. In other words, definitely to be avoided. – onedaywhen Aug 10 '10 at 7:19