philippabele / cockroack-db-notes

0 stars 0 forks source link

add Practical First Steps with CockroachDB #2

Closed philippabele closed 1 year ago

philippabele commented 1 year ago

add some easy tasks to get familier with the db

philippabele commented 1 year ago

init data

cockroach workload init movr

In a new terminal window, connect to it using the SQL shell:

cockroach sql --insecure

SQL Shell

SHOW databases; SHOW TABLES FROM movr; SELECT * FROM movr.users LIMIT 10;