Created
April 5, 2017 23:18
-
-
Save marylly/6f199c9ee80b320345b87e95ccec0916 to your computer and use it in GitHub Desktop.
SQL Databases Commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # MariaDB | |
| # Dump de vários banco de dados | |
| $ mysqldump --databases <database1> <databasen> | |
| # Dump de tabelas especificas de um banco de dados específico (Isso cria com os comandos se a tabela existe, apaga a tabela e cria novamente) | |
| $ mysqldump <database> <table1> <table2> <tablen> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment