Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/faq/operations/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ keywords: ['operations', 'administration', 'deployment', 'cluster management', '
- [How do I configure ClickHouse Keeper?](/guides/sre/keeper/index.md)
- [Can ClickHouse integrate with LDAP?](/guides/sre/user-management/configuring-ldap.md)
- [How do I configure users, roles and permissions in ClickHouse?](/guides/sre/user-management/index.md)
- [Can you update or delete rows in ClickHouse?](/guides/developer/mutations.md)
- [Can you update or delete rows in ClickHouse?](/guides/starter_guides/mutations.md)
- [Does ClickHouse support multi-region replication?](/faq/operations/multi-region-replication.md)

:::info Don't see what you're looking for?
Expand Down
18 changes: 18 additions & 0 deletions docs/guides/starter_guides/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
slug: /starter-guides
title: 'Starter Guides'
description: 'Landing page for starter guides'
pagination_prev: null
pagination_next: null
doc_type: 'landing-page'
keywords: ['beginner', 'tutorial', 'create table', 'insert data', 'select data', 'update data', 'delete data']
---

In this section of the docs you'll find starter guides for common SQL queries: `CREATE`, `INSERT`, `SELECT`, and mutations `UPDATE` and `DELETE`.

| Page | Description |
|-----------------------------------------------------|------------------------------------------------------------------------|
| [Create Tables](/guides/creating-tables) | Starter guide on how to create a table. |
| [Insert Data](/guides/inserting-data) | Starter guide on how to insert data into a table. |
| [Select Data](/guides/writing-queries) | Starter guide on how to select data from a table. |
| [Update and Delete Data](/guides/developer/mutations) | Starter guide on mutations - updating and deleting data in ClickHouse. |
Loading