title | summary | toc | docs_area |
---|---|---|---|
Learn CockroachDB SQL |
Learn some of the most essential CockroachDB SQL statements on a local cluster. |
true |
get_started |
This tutorial walks you through some of the most essential CockroachDB SQL statements. For a complete list of supported SQL statements and related details, see SQL Statements.
Make sure you have already connected the CockroachDB SQL client to your cluster. Alternatively, you can use a local demo cluster or click below to run through the tutorial entirely in your browser.
Your {{ site.data.products.db }} cluster comes with a defaultdb
for testing and some internal databases.
To create a new database, connect with your initial "admin" user and use CREATE DATABASE
followed by a database name:
{% include_cached copy-clipboard.html %}
> CREATE DATABASE bank;
Database names must follow these identifier rules. To avoid an error in case the database already exists, you can include IF NOT EXISTS
:
{% include_cached copy-clipboard.html %}
> CREATE DATABASE IF NOT EXISTS bank;
When you no longer need a database, use DROP DATABASE
followed by the database name to remove the database and all its objects:
{% include_cached copy-clipboard.html %}
> DROP DATABASE bank;
To see all databases, use the SHOW DATABASES
statement or the \l
shell command:
{% include_cached copy-clipboard.html %}
> SHOW DATABASES;
database_name
+---------------+
bank
defaultdb
postgres
system
(4 rows)
It's best to set the default database directly in your connection string.
{% include_cached copy-clipboard.html %}
> SET DATABASE = bank;
When working in the default database, you do not need to reference it explicitly in statements. To see which database is currently the default, use the SHOW DATABASE
statement (note the singular form):
{% include_cached copy-clipboard.html %}
> SHOW DATABASE;
database
+----------+
bank
(1 row)
To create a table, use CREATE TABLE
followed by a table name, the column names, and the data type and constraint, if any, for each column:
{% include_cached copy-clipboard.html %}
> CREATE TABLE accounts (
id INT PRIMARY KEY,
balance DECIMAL
);
Table and column names must follow these rules. Also, when you do not explicitly define a primary key, CockroachDB will automatically add a hidden rowid
column as the primary key.
To avoid an error in case the table already exists, you can include IF NOT EXISTS
:
{% include_cached copy-clipboard.html %}
> CREATE TABLE IF NOT EXISTS accounts (
id INT PRIMARY KEY,
balance DECIMAL
);
To show all of the columns from a table, use the SHOW COLUMNS FROM <table>
statement or the \d <table>
shell command:
{% include_cached copy-clipboard.html %}
> SHOW COLUMNS FROM accounts;
column_name | data_type | is_nullable | column_default | generation_expression | indices | is_hidden
+-------------+-----------+-------------+----------------+-----------------------+-------------+-----------+
id | INT | false | NULL | | {"primary"} | false
balance | DECIMAL | true | NULL | | {} | false
(2 rows)
When you no longer need a table, use DROP TABLE
followed by the table name to remove the table and all its data:
{% include_cached copy-clipboard.html %}
> DROP TABLE accounts;
To see all tables in the active database, use the SHOW TABLES
statement or the \dt
shell command:
{% include_cached copy-clipboard.html %}
> SHOW TABLES;
table_name
+------------+
accounts
(1 row)
To insert a row into a table, use INSERT INTO
followed by the table name and then the column values listed in the order in which the columns appear in the table:
{% include_cached copy-clipboard.html %}
> INSERT INTO accounts VALUES (1, 10000.50);
If you want to pass column values in a different order, list the column names explicitly and provide the column values in the corresponding order:
{% include_cached copy-clipboard.html %}
> INSERT INTO accounts (balance, id) VALUES
(25000.00, 2);
To insert multiple rows into a table, use a comma-separated list of parentheses, each containing column values for one row:
{% include_cached copy-clipboard.html %}
> INSERT INTO accounts VALUES
(3, 8100.73),
(4, 9400.10);
Default values are used when you leave specific columns out of your statement, or when you explicitly request default values. For example, both of the following statements would create a row with balance
filled with its default value, in this case NULL
:
{% include_cached copy-clipboard.html %}
> INSERT INTO accounts (id) VALUES
(5);
{% include_cached copy-clipboard.html %}
> INSERT INTO accounts (id, balance) VALUES
(6, DEFAULT);
{% include_cached copy-clipboard.html %}
> SELECT * FROM accounts WHERE id in (5, 6);
id | balance
+----+---------+
5 | NULL
6 | NULL
(2 rows)
Indexes help locate data without having to look through every row of a table. They're automatically created for the primary key of a table and any columns with a UNIQUE
constraint.
To create an index for non-unique columns, use CREATE INDEX
followed by an optional index name and an ON
clause identifying the table and column(s) to index. For each column, you can choose whether to sort ascending (ASC
) or descending (DESC
).
{% include_cached copy-clipboard.html %}
> CREATE INDEX balance_idx ON accounts (balance DESC);
You can create indexes during table creation as well; just include the INDEX
keyword followed by an optional index name and the column(s) to index:
{% include_cached copy-clipboard.html %}
> CREATE TABLE accounts (
id INT PRIMARY KEY,
balance DECIMAL,
INDEX balance_idx (balance)
);
To show the indexes on a table, use SHOW INDEX FROM
followed by the name of the table:
{% include_cached copy-clipboard.html %}
> SHOW INDEX FROM accounts;
table_name | index_name | non_unique | seq_in_index | column_name | direction | storing | implicit
+------------+-------------+------------+--------------+-------------+-----------+---------+----------+
accounts | balance_idx | true | 1 | balance | DESC | false | false
accounts | balance_idx | true | 2 | id | ASC | false | true
accounts | primary | false | 1 | id | ASC | false | false
accounts | primary | false | 2 | balance | N/A | true | false
(4 rows)
To query a table, use SELECT
followed by a comma-separated list of the columns to be returned and the table from which to retrieve the data:
{% include_cached copy-clipboard.html %}
> SELECT balance FROM accounts;
balance
+----------+
10000.50
25000.00
8100.73
9400.10
NULL
NULL
(6 rows)
To retrieve all columns, use the *
wildcard:
{% include_cached copy-clipboard.html %}
> SELECT * FROM accounts;
id | balance
+----+----------+
1 | 10000.50
2 | 25000.00
3 | 8100.73
4 | 9400.10
5 | NULL
6 | NULL
(6 rows)
To filter the results, add a WHERE
clause identifying the columns and values to filter on:
{% include_cached copy-clipboard.html %}
> SELECT id, balance FROM accounts WHERE balance > 9000;
id | balance
+----+----------+
2 | 25000.00
1 | 10000.50
4 | 9400.10
(3 rows)
To sort the results, add an ORDER BY
clause identifying the columns to sort by. For each column, you can choose whether to sort ascending (ASC
) or descending (DESC
).
{% include_cached copy-clipboard.html %}
> SELECT id, balance FROM accounts ORDER BY balance DESC;
id | balance
+----+----------+
2 | 25000.00
1 | 10000.50
4 | 9400.10
3 | 8100.73
5 | NULL
6 | NULL
(6 rows)
To update rows in a table, use UPDATE
followed by the table name, a SET
clause identifying the columns to update and their new values, and a WHERE
clause identifying the rows to update:
{% include_cached copy-clipboard.html %}
> UPDATE accounts SET balance = balance - 5.50 WHERE balance < 10000;
{% include_cached copy-clipboard.html %}
> SELECT * FROM accounts;
id | balance
+----+----------+
1 | 10000.50
2 | 25000.00
3 | 8095.23
4 | 9394.60
5 | NULL
6 | NULL
(6 rows)
If a table has a primary key, you can use that in the WHERE
clause to reliably update specific rows; otherwise, each row matching the WHERE
clause is updated. When there's no WHERE
clause, all rows in the table are updated.
To delete rows from a table, use DELETE FROM
followed by the table name and a WHERE
clause identifying the rows to delete:
{% include_cached copy-clipboard.html %}
> DELETE FROM accounts WHERE id in (5, 6);
{% include_cached copy-clipboard.html %}
> SELECT * FROM accounts;
id | balance
+----+----------+
1 | 10000.50
2 | 25000.00
3 | 8095.23
4 | 9394.60
(4 rows)
Just as with the UPDATE
statement, if a table has a primary key, you can use that in the WHERE
clause to reliably delete specific rows; otherwise, each row matching the WHERE
clause is deleted. When there's no WHERE
clause, all rows in the table are deleted.