Update docs/en/engines/table-engines/integrations/embedded-rocksdb.md

This commit is contained in:
Dan Roscigno 2023-02-15 13:29:33 -05:00 committed by GitHub
parent 0496b55003
commit 10c8f31811
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,7 +115,7 @@ TRUNCATE TABLE test;
### Updates
Values can be updated using `ALTER TABLE` query. Primary key cannot be updated.
Values can be updated using the `ALTER TABLE` query. The primary key cannot be updated.
```sql
ALTER TABLE test UPDATE v1 = v1 * 10 + 2 WHERE key LIKE 'some%' AND v3 > 3.1;