add max aggregate function

This commit is contained in:
mazchew
2024-07-09 02:43:36 +08:00
parent e5d55398db
commit 3f339d07d3
4 changed files with 61 additions and 2 deletions

View File

@@ -47,6 +47,10 @@ do_execsql_test select-count {
SELECT count(id) FROM users;
} {10000}
do_execsql_test select-max {
SELECT max(age) FROM users;
} {100}
do_execsql_test select-limit-0 {
SELECT id FROM users LIMIT 0;
} {}