Importing and exporting data in MySQL

Página 33

MySQL is one of the most popular database management systems in the world. It offers a wide range of functionality, including the ability to import and export data. This feature is extremely useful when you want to move data from one database to another, back up data or share data with others. In this article, we are going to explore in depth how to import and export data in MySQL.

Data Import in MySQL

There are several ways to import data into a MySQL database, but one of the most common ways is to use the SQL command LOAD DATA INFILE. This command lets you load data from a text file into a table in the database.

For example, suppose you have a text file called 'data.txt' with comma-delimited data. You can import this data into a table called 'my_table' using the following command:

LOAD DATA INFILE 'data.txt'
INTO TABLE my_table
FIELDS TERMINATED BY ','
LINES TERMINATED BY '\n';

This command reads the 'data.txt' file, interprets each line as a record and each field (comma delimited) as a column. It then inserts the data into the table 'my_table'.

Data Export in MySQL

Like importing, exporting data in MySQL can also be done in several ways. However, one of the most common ways is to use the SELECT INTO OUTFILE SQL command.

For example, if you want to export all data from table 'my_table' to a text file called 'export_data.txt', you can use the following command:

SELECT * INTO OUTFILE 'data_exported.txt'
FIELDS TERMINATED BY ','
LINES TERMINATED BY '\n'
FROM my_table;

This command selects all the data from table 'my_table', formats the data as comma-delimited text, and then writes the data to the file 'export_data.txt'.

Considerations When Importing and Exporting Data

Although the LOAD DATA INFILE and SELECT INTO OUTFILE commands are powerful and flexible, there are a few things to keep in mind when using them.

First, you must make sure that the structure of the target table (in the case of import) or the source table (in the case of export) matches the data you are importing or exporting. For example, if you are importing data that has three fields, the target table must have at least three columns.

Second, you must have permission to read the data file (if importing) or write to the target file (if exporting). If you don't have the required permissions, the command will fail.

Third, you should be careful with escape characters. By default, MySQL treats the backslash character (\) as an escape character. This means that if your data contains a backslash, you will need to escape it using another backslash.

Conclusion

Importing and exporting data are common tasks when working with databases. MySQL offers powerful and flexible commands to accomplish these tasks. However, when using them, you must be careful to ensure that the structure of the table matches your data, that you have the necessary permissions, and that you are handling escape characters correctly.

Now answer the exercise about the content:

Which of the following SQL commands is used to import data into a MySQL database from a text file?

You are right! Congratulations, now go to the next page

You missed! Try again.

Next page of the Free Ebook:

34Using MySQL with PHP

Earn your Certificate for this Course for Free! by downloading the Cursa app and reading the ebook there. Available on Google Play or App Store!

Get it on Google Play Get it on App Store

+ 6.5 million
students

Free and Valid
Certificate with QR Code

48 thousand free
exercises

4.8/5 rating in
app stores

Free courses in
video, audio and text