comparison tests/selclause.ur @ 1627:5c1f10cdac63

New 't.*' notation for SELECT
author Adam Chlipala <adam@chlipala.net>
date Sat, 03 Dec 2011 17:07:34 -0500
parents
children
comparison
equal deleted inserted replaced
1626:07eed8386f07 1627:5c1f10cdac63
1 table t : { A : int, B : string, C : float }
2 table u : { D : int, E : string, F : float }
3
4 val q : transaction (list {T : { A : int, B : string, C : float}, U : { D : int }, X : string }) =
5 queryL (SELECT t.*, u.D, 'hi' AS X
6 FROM t, u)