Mercurial > urweb
diff tests/order_by.lac @ 234:82409ef72019
SELECTed expressions in ORDER BY
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 28 Aug 2008 11:49:38 -0400 |
parents | 87d41ac28b30 |
children |
line wrap: on
line diff
--- a/tests/order_by.lac Thu Aug 28 11:17:14 2008 -0400 +++ b/tests/order_by.lac Thu Aug 28 11:49:38 2008 -0400 @@ -6,3 +6,10 @@ val q3 = (SELECT t1.B FROM t1 UNION SELECT t1.B FROM t1 ORDER BY t1.B) + +val q4 = (SELECT t1.A, t2.D, t1.A < t2.D AS Lt + FROM t1, t2 + ORDER BY Lt) +val q5 = (SELECT t1.A, t2.D, t1.A < t2.D AS Lt + FROM t1, t2 + ORDER BY t1.A, Lt, t2.D)