Skip to content

DynamoDB - PartiQLΒΆ

  • Use an SQL-likey syntax to manipulate DynamoDB tables
SELECT *
FROM "demo_indexes"
WHERE "user_id" = "partitionKeyValue" AND "game_ts" = "sortKeyValue"
  • Supports some (but not all) statements:
    • INSERT
    • UPDATE
    • SELECT
    • DELETE
  • It supports Batch operations

The editor can be acessed in the left sidebar.