comparison tests/relops.lac @ 229:016d71e878c1

Relational operators; string literals for SQL
author Adam Chlipala <adamc@hcoop.net>
date Thu, 21 Aug 2008 15:27:04 -0400
parents
children
comparison
equal deleted inserted replaced
228:19e5791923d0 229:016d71e878c1
1 table t1 : {A : int, B : string, C : float}
2 table t2 : {A : float, D : int}
3
4 val q1 = (SELECT * FROM t1
5 UNION SELECT * FROM t1)
6 val q2 = (SELECT t1.A, t1.B FROM t1 WHERE t1.A = 0
7 INTERSECT SELECT t1.B, t1.A FROM t1 WHERE t1.B = t1.B)
8 val q3 = (SELECT t1.A, t1.B, t1.C FROM t1 WHERE t1.A = 0
9 INTERSECT SELECT * FROM t1 WHERE t1.B = 'Hello world!'
10 EXCEPT SELECT * FROM t1 WHERE t1.A < t1.A)