Mysql Commands: Difference between revisions

From The Opensource Knowledgebase
Jump to navigation Jump to search
Line 15: Line 15:
**Using defaults
**Using defaults
**Using specific parameters. You can change the parameters based on your requirement
**Using specific parameters. You can change the parameters based on your requirement
::: <code> mysql> CREATE DATABASE param DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;</code>
:: <code> mysql> CREATE DATABASE param DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;</code>


*Delete database: param
*Delete database: param

Revision as of 12:37, 10 January 2020

Installation

  • Installation on ubuntu server through terminal
sudo apt install mariadb-server
sudo mysql_secure_installation
sudo systemctl status mariadb
  • Start or stop mariadb server services
sudo systemctl stop mariadb
sudo systemctl start mariadb

Database Management

  • Create database: param
    • Using defaults
    • Using specific parameters. You can change the parameters based on your requirement
mysql> CREATE DATABASE param DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
  • Delete database: param
mysql> DROP DATABASE param;

User Management

Access Rights Management

Table Management

Backup Management