Database CLI: Difference between revisions
Jump to navigation
Jump to search
(Created page with "This page contains some helpful commands to use at the MariaDB CLI <code>>SHOW DATABASES;</code> - This command lists all databases") |
No edit summary |
||
Line 1: | Line 1: | ||
This page contains some helpful commands to use at the MariaDB CLI | This page contains some helpful commands to use at the [https://mariadb.com/kb/en/mariadb-basics/ MariaDB CLI]. | ||
<code>>SHOW DATABASES;</code> | #<code>>SHOW DATABASES;</code> List all databases; | ||
#<code>>USE <database>;</code> Use a particular database, eg: <code>>USE bplan;</code>; |
Revision as of 16:41, 7 July 2020
This page contains some helpful commands to use at the MariaDB CLI.
>SHOW DATABASES;
List all databases;>USE <database>;
Use a particular database, eg:>USE bplan;
;