diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-08-28 11:59:46 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-08-28 11:59:46 -0400 |
commit | fe8bd11ade81a5835d72c498a763c13c17fddd25 (patch) | |
tree | 5ed3eba6ef836ed2e6a42d9561bafc183ec9f7a3 /tests | |
parent | 595c8e8d87d9f91e454654c3d7ad9dd49a1bfd93 (diff) |
COUNT
Diffstat (limited to 'tests')
-rw-r--r-- | tests/agg.lac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/agg.lac b/tests/agg.lac new file mode 100644 index 00000000..7061612b --- /dev/null +++ b/tests/agg.lac @@ -0,0 +1,4 @@ +table t1 : {A : int, B : string, C : float} +table t2 : {A : float, D : int} + +val q1 = (SELECT COUNT( * ) AS N FROM t1) |