Tagged: mysql

Exporting mysql data using mysqldump

The mysqldump client utility performs logical backups, producing a set of SQL statements that can be executed to reproduce the original database object definitions and table data. It dumps one...

How to create,import and export database on MySQL

This article mainly describes the MySQL commonly used commands. Create a database mysql -u root –p #Access to mysql service Enter password: # Enter the root password of the database. MySQL...