You must export data from a set of tables in the world x databaseExamine this set of tables: Tables ( country, countryinfo, location).
Which two option will export data into one or more files?
A. mySqI> CLONE LOCAL DATA DIRECTORY = '"var/lib/mysql/worid x/country',
mySql> CLONE LOCAL DATA DIRECTORY = "var/lib/mysql/world x/countryinfo';
mySqI> CLONE LOCAL DATA DIRECTORY = "/var/lib/mysql/worid x/location'.
B. mySqI>SELECT * INTO OUTFILE '/output/contry.txt' FROM world x.country,
mySqI>SELECT *INTO OUTFILE '/output/contryinfo.txt' FROM world x.countryinfo,
mySqI>SELECT *INTO OUTFILE "/output/location.txt" FROM world x.location,
C. shell> mysqlexport world_x country countryinfo location> mydump.sql #没有 mysqlexport 这个工具
D.shell> mysql --batch word x.country world x.countryinfo world x.location > mydump.sql
E.shell> mysqldump worid x country countryinfo location > mydump.sql