Question

I need to export a table from phpmyadmin to a comma delimited text file. I think there is a code but can't seem to find it. I found one but it doesnt work.

I need to export this table because I need to organize it and sort it and add another column so I can add data to this column.

How can I do this please?

Was it helpful?

Solution

In PHPAdmin, if I recall correctly, there is an Export tab. If you click on that, you can select the table(s) you want to export and which format you would like to export the data in. CSV, .zip, .gzip, etc...

OTHER TIPS

Select the database and click the 'Export' tab. Select the table to export. Use CSV as the format.

Execute this statement:

SELECT * FROM `table_name`
 INTO OUTFILE 'directory' ->e.g /tmp/myTable.csv(Linux) or C:\myTable.csv(Windows)
 FIELDS TERMINATED BY ','
 ENCLOSED BY '"'
 LINES TERMINATED BY '\n'

As mention before you have a export tab for do things things. But if you want to export a tricky question or a very special ordering you can do as following:

Go to View or write your SQL question
In the bottom of the view-page you will have a Export link. 
If you click on that you will now export the question (and its order) 
in any format you chose
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top