---
title: Manipulate Data with Queries
description: These guides explain how to create, update, and delete data with a SQL++ query.
pubDate: 2026-08-17T09:53:44.266Z
antora:
  editUrl: https://github.com/couchbaselabs/docs-devex/edit/release/7.6/modules/guides/pages/manipulate.adoc
  xref: xref:7.6@server:guides:manipulate.adoc[]
---

[Consult the llms.txt file for a full list of contents](/llms.txt)
[View original HTML](/server/7.6/guides/manipulate.html)

# Manipulate Data with Queries

These guides explain how to create, update, and delete data with a SQL++ query.

## Inserting Data

To insert documents in a keyspace, you can use the INSERT statement, the UPSERT statement, or the MERGE statement.

* [Insert Data with a Query](insert.md)

## Updating Data

To modify documents in a keyspace, you can use the UPDATE statement or the MERGE statement.

* [Modify Data with a Query](update.md)

## Deleting Data

To delete documents from a keyspace, you can use the DELETE statement or the MERGE statement.

* [Delete Data with a Query](delete.md)