Please could someont tell me how to export just a column rather than a whole table in mysql ? my table has 4 componants: Widget ID number Widget name Date requested order number I want to export just the Widget names and not the whole table.
The easy way is to use phpmyadmin to dump the entire DB into Excel. Then delete the columns you don't want.
You might as well use a query like this: SELECT widgetname INTO OUTFILE '/path/to/export/on/server/names.txt' FROM table Code (markup): The selected column will then be saved to the given path on the server.