- Table Data Import and Export, SQL Data Import and Export, Result Data Export, and SQL syntax.
- Right-click a table, then choose Table Data Import Wizard.
- You use the Configure Import Settings page to map the columns.
- Right-click a table and choose Table Data Export Wizard.
- Go into the Management or Administration panel in MySQL Workbench, then select Data Import/Restore.
- Go into the Management or Administration panel in MySQL Workbench, then select Data Export.
- Select rows from a table, then click the Export recordset to an external file button.
- LOAD DATA INFILE '/pathtoyourfiles/baseballdatabank-csv/csv-files/Teams.csv'
INTO TABLE yourschema.teams
FIELDS TERMINATED BY ','; - SELECT * INTO OUTFILE 'teams-export.csv'
FIELDS TERMINATED BY ';' OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '\n'
FROM yourschema...




















































