Skip to content

Instantly share code, notes, and snippets.

@danilobatistaqueiroz
Last active November 24, 2017 00:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danilobatistaqueiroz/81421224b27222237146902dd9cf7fc0 to your computer and use it in GitHub Desktop.
Save danilobatistaqueiroz/81421224b27222237146902dd9cf7fc0 to your computer and use it in GitHub Desktop.
Mysql Tips

Mysql Tips

open MySql Shell

mysqlshell

digit:

\sql
\c root@localhost
<<fill the passworkd>>

showing the available databases

show databases;

creating a new database

create database <<dbname>>;

switch to a database

use <<database>>;

show tables

show tables;

show table structure

desc <<tablename>>;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment