How to Create a new database on MySQL?
To create a new database you need to login as root or a account that has permission.
we will create KartookShop database.
-> mysql -u root -p
mysql> create database KartookShop;
Query OK, 1 row affected (0.06 sec)
Possibly Related Posts:
- Linux : Error: mysql: Got a packet bigger than ‘max_allowed_packet’ bytes
- linux : How do I enable EPEL (Extra Packages for Enterprise Linux) repo and install the packages under CentOS Linux?
- AutoMySQLBackup: Regularly Backup Your MySQL
- Linux tool :Fdupes
- Backtrack : TestDisk ( Digital forensics ,forensics analysis)
