# Importing and Exporting

Data can be imported to a MySQL connection from a file on your machine, or exported and downloaded to you machine.

## Import

Import data from a file on your machine into the MySQL connection.

To import data from a csv file, is the `LOAD DATA` MySQL command:

```
LOAD DATA LOCAL INFILE "input.csv" INTO TABLE <table> FIELDS
  TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\r\n'
```

In the example above, "\<table>" should be replaced with the SQL table to import data into.\
The other parts of the command are required for CSV-formatted files.  If your uploaded file uses different termination characters update the query accordingly.

After running the query, Keeper Connection Manager will prompt you to supply the data file.  To upload the file, simply drag and drop it from your machine onto the browser window.

{% hint style="info" %}
The file uploaded does not have to have the same name given in the query
{% endhint %}

## Export

Data from the connected MySQL database can be exported to a file on your machine.  To do this, use the following query:

```
 SELECT <query> INTO LOCAL OUTFILE "<name>.csv"
```

The result of the given \<query> will be put into a CSV file with the given name and downloaded from the browser to your machine.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.keeper.io/keeper-connection-manager/supported-protocols/mysql/importing-and-exporting.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
