Mysql Commands: Difference between revisions
Jump to navigation
Jump to search
Line 17: | Line 17: | ||
mysql> CREATE DATABASE param; | mysql> CREATE DATABASE param; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
**Using specific parameters. You can change the parameters based on your requirement | ***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:35, 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
mysql> CREATE DATABASE param;
- 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;