ClickHouse/docs/en/getting-started/playground.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.8 KiB
Markdown
Raw Normal View History

2020-04-04 09:15:31 +00:00
---
2023-03-18 02:45:43 +00:00
sidebar_label: ClickHouse Playground
sidebar_position: 2
keywords: [clickhouse, playground, getting, started, docs]
description: The ClickHouse Playground allows people to experiment with ClickHouse by running queries instantly, without setting up their server or cluster.
slug: /en/getting-started/playground
2020-04-04 09:15:31 +00:00
---
2022-06-02 10:55:18 +00:00
# ClickHouse Playground
2020-04-04 09:15:31 +00:00
2022-03-21 03:10:28 +00:00
[ClickHouse Playground](https://play.clickhouse.com/play?user=play) allows people to experiment with ClickHouse by running queries instantly, without setting up their server or cluster.
Several example datasets are available in Playground.
2023-03-18 02:45:43 +00:00
You can make queries to Playground using any HTTP client, for example [curl](https://curl.haxx.se) or [wget](https://www.gnu.org/software/wget/), or set up a connection using [JDBC](../interfaces/jdbc.md) or [ODBC](../interfaces/odbc.md) drivers. More information about software products that support ClickHouse is available [here](../integrations/index.mdx).
2020-04-04 09:15:31 +00:00
2022-03-21 03:10:28 +00:00
## Credentials {#credentials}
2020-04-04 09:15:31 +00:00
2022-03-21 03:10:28 +00:00
| Parameter | Value |
|:--------------------|:-----------------------------------|
| HTTPS endpoint | `https://play.clickhouse.com:443/` |
| Native TCP endpoint | `play.clickhouse.com:9440` |
| User | `explorer` or `play` |
| Password | (empty) |
2020-04-04 09:15:31 +00:00
2022-03-21 03:10:28 +00:00
## Limitations {#limitations}
2020-04-04 09:15:31 +00:00
2022-03-21 03:10:28 +00:00
The queries are executed as a read-only user. It implies some limitations:
2020-04-04 09:15:31 +00:00
2022-03-21 03:10:28 +00:00
- DDL queries are not allowed
- INSERT queries are not allowed
2020-04-04 09:15:31 +00:00
2022-03-21 03:10:28 +00:00
The service also have quotas on its usage.
2020-04-04 09:15:31 +00:00
2022-03-21 03:10:28 +00:00
## Examples {#examples}
2020-04-04 09:15:31 +00:00
2022-03-21 03:10:28 +00:00
HTTPS endpoint example with `curl`:
2020-04-04 09:15:31 +00:00
``` bash
2022-03-21 03:10:28 +00:00
curl "https://play.clickhouse.com/?user=explorer" --data-binary "SELECT 'Play ClickHouse'"
2020-04-04 09:15:31 +00:00
```
2022-04-11 05:01:34 +00:00
TCP endpoint example with [CLI](../interfaces/cli.md):
``` bash
2022-03-21 03:10:28 +00:00
clickhouse client --secure --host play.clickhouse.com --user explorer
```