---
---
*Estimated completion time: 20 minutes*
This tutorial guides you through an easy way to get started with TiDB Cloud.
Additionally, you can try out TiDB features on [TiDB Playground](https://play.tidbcloud.com/?utm_source=docs&utm_medium=tidb_cloud_quick_start&__hstc=86493575.8fd5c3794b2c1fd56efc4f9ff79b4f05.1768919948161.1768919948161.1768919948161.1&__hssc=86493575.55.1768919948161&__hsfp=9de7ce2869c625c5fa17098e8aa41c1e).
[TiDB Cloud Starter](/tidbcloud/select-cluster-tier/#starter) is the best way to get started with TiDB Cloud. To create a TiDB Cloud Starter cluster, follow these steps:
You can sign up with your email and password to manage your password using TiDB Cloud, or choose to sign in with your Google, GitHub, or Microsoft account for single sign-on (SSO) to TiDB Cloud.
The [Clusters](https://tidbcloud.com/project/clusters?__hstc=86493575.8fd5c3794b2c1fd56efc4f9ff79b4f05.1768919948161.1768919948161.1768919948161.1&__hssc=86493575.55.1768919948161&__hsfp=9de7ce2869c625c5fa17098e8aa41c1e) page is displayed by default.
Cluster0 for you.
* To instantly try out TiDB Cloud features with this default cluster, proceed to [Step 2: Try AI-assisted SQL Editor](#step-2-try-ai-assisted-sql-editor).
* To create a new TiDB Cloud Starter cluster on your own, follow these steps:
1. Click Create Cluster.
2. On the Create Cluster page, Starter is selected by default. Select the cloud provider and target region for your cluster, update the default cluster name if necessary, and then click Create. Your TiDB Cloud Starter cluster will be created in approximately 30 seconds.
Note
Currently, TiDB Cloud Starter is generally available on AWS and in public preview on Alibaba Cloud. The subsequent steps in this document use AWS as an example.
For TiDB Cloud Starter clusters hosted on AWS, you can use the built-in AI-assisted SQL Editor in the TiDB Cloud console to maximize your data value. This enables you to run SQL queries against databases without a local SQL client. You can intuitively view the query results in tables or charts and easily check the query logs.
⌘ + I on macOS (or Control + I on Windows or Linux) to instruct [Chat2Query (beta)](/tidbcloud/tidb-cloud-glossary/#chat2query) to generate SQL queries automatically.
For example, to create a new table test.t with two columns (column id and column name), you can type use test; to specify the database, press ⌘ + I, type create a new table t with id and name as the instruction, and then press Enter to let AI generate a SQL statement accordingly.
For the generated statement, you can accept it by clicking Accept and then further edit it if needed, or reject it by clicking Discard.
Note
SQL queries generated by AI are not 100% accurate and might still require further tweaking.
* macOS
* Windows/Linux
For macOS:
* If you have only one query in the editor, press ⌘ + Enter or click Run to execute it.
* If you have multiple queries in the editor, select the lines of the target queries with your cursor, and then press ⌘ + Enter or click Run to execute them sequentially.
* To run all queries in the editor sequentially, press ⇧ + ⌘ + Enter, or select the lines of all queries with your cursor and click Run.
For Windows or Linux:
* If you have only one query in the editor, press Ctrl + Enter or click Run to execute it.
* If you have multiple queries in the editor, select the lines of the target queries with your cursor, and then press Ctrl + Enter or click Run to execute them sequentially.
* To run all queries in the editor sequentially, press Shift + Ctrl + Enter, or select the lines of all queries with your cursor and click Run.
After running the queries, you can immediately see the query logs and results at the bottom of the page.
To let AI generate more SQL statements, you can type more instructions as shown in the following example:
use test; -- create a new table t with id and name CREATE TABLE <code>t(idINT,nameVARCHAR(255)); -- add 3 rows INSERT INTOt(id,name) VALUES (1, 'row1'), (2, 'row2'), (3, 'row3'); -- query all SELECTid,nameFROMt;
TiDB Cloud offers an interactive tutorial with carefully crafted sample datasets to help you quickly get started with TiDB Cloud. For TiDB Cloud Starter clusters hosted on AWS, you can try this tutorial to learn how to use TiDB Cloud for high-performance data analytics.
* To learn how to connect to your cluster using different methods, see [Connect to a TiDB Cloud Starter or Essential cluster](/tidbcloud/connect-to-tidb-cluster-serverless/).
* For more information about how to use SQL Editor and Chat2Query to explore your data, see [Explore your data with AI-assisted SQL Editor](/tidbcloud/explore-data-with-chat2query/).
* For TiDB SQL usage, see [Explore SQL with TiDB](/tidbcloud/basic-sql-operations/).
* For production use with the benefits of cross-zone high availability, horizontal scaling, and [HTAP](https://en.wikipedia.org/wiki/Hybrid_transactional/analytical_processing), see [Create a TiDB Cloud Dedicated cluster](/tidbcloud/create-tidb-cluster/).