You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/data-warehouse/quickstart.mdx
+89Lines changed: 89 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,96 @@ You are now connected to your Data Warehouse for ClickHouse® deployment, and ca
88
88
89
89
## How to import and query an example data set
90
90
91
+
### Creating a database and ingesting data
91
92
93
+
<Messagetype="note">
94
+
This example is based on the **New York Taxi Data** from the [Official ClickHouse documentation](https://clickhouse.com/docs/getting-started/example-datasets/nyc-taxi).
95
+
</Message>
96
+
97
+
1. Run the command below to create a new database:
98
+
```sql
99
+
CREATEDATABASEnyc_taxi;
100
+
```
101
+
102
+
2. Create a new table in the database you just created:
0 commit comments