Get started
The PlanetScale web console can be used to query to any database branch; however, it is disabled for production branches by default to prevent accidental data loss. To access the web console, navigate to a database, and click on the “Console” tab in the page navigation. From here, you can select which branch you’d like to connect to by selecting it in the dropdown and clicking “Connect”.
/console
to the URL from any database branch page,
app.planetscale.com/<org>/<database>/<branch>/console
.
Once you have accessed the web console, you can run queries against your database branch, or apply DDL to branches without safe migrations enabled.
The following are examples of MySQL statements you may find useful within the web console:
Use SHOW TABLES;
to see a list of the tables in your database branch.

DESCRIBE table_name;
to obtain information about a given table’s structure.

EXPLAIN
in front of SELECT
, DELETE
, INSERT
, REPLACE
and UPDATES
statements to learn how the database is executing a query. This can be useful for optimizing slow queries.
Supported console commands
Command | Description |
---|---|
?, \? | Synonym for help |
clear, \c | Clear the current input statement |
help, \h | Display list of commands |
ego, \G | Send command to server |
go, \g | Send command to server |
Enable for production branches
By default, the web console is disabled for production branches to prevent accidental data loss. You can enable the web console for production branches on the “Settings” page for the given database,app.planetscale.com/<org>/<database>/settings
.
Select the checkbox for “Allow web console access to production branches”, then scroll down and click the “Save database settings” button to save your changes.
