[DRAFT]This page is not published. Only visible in development mode.
Tables
Tables are the most common storage primitive. They hold rows of typed columns with full transactional guarantees.
Create, Insert, Query
$ Table Storage
Tables persist rows durably. Every insert, update, and delete is transactional. Query tables with FROM and chain any RQL transform.
Auto Increment
$ Auto Increment
Use WITH { auto_increment } on a column to let the database assign IDs automatically.
