Mysql Commands: Difference between revisions

From The Opensource Knowledgebase
Jump to navigation Jump to search
Line 14: Line 14:
*Create database: param  
*Create database: param  
**Using defaults
**Using defaults
<syntaxhighlight lang="bash">
**Using specific parameters. You can change the parameters based on your requirement
mysql> CREATE DATABASE param;
</syntaxhighlight>
***Using specific parameters. You can change the parameters based on your requirement
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
mysql> CREATE DATABASE param DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
mysql> CREATE DATABASE param DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;

Revision as of 12:36, 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