Update docs

This commit is contained in:
Pekka Enberg
2024-07-16 14:43:18 +03:00
parent e3211b11ff
commit 44d189668b
2 changed files with 2 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
### Added
- Partial `SELECT` statement support, including `WHERE`, `LIMIT`, `CROSS JOIN`, and `INNER JOIN`.
- Partial `SELECT` statement support, including `WHERE`, `LIKE`, `LIMIT`, `CROSS JOIN`, and `INNER JOIN`.
- Aggregate function support.

View File

@@ -42,6 +42,7 @@ This document describes the SQLite compatibility status of Limbo:
| SAVEPOINT | No | |
| SELECT | Partial | |
| SELECT ... WHERE | Partial | |
| SELECT ... WHERE ... LIKE | Yes | |
| SELECT ... LIMIT | Yes | |
| SELECT ... ORDER BY | No | |
| SELECT ... GROUP BY | No | |