I do have thousands of website list and other info in MySQL database.
I want only website column named \"web\" to be exported to excel or text or csv.
I know
Query
SELECT `web` FROM `yourtablename`
Or this to export unique records only:
SELECT DISTINCT `web` FROM `yourtablename`
Then click export link given on bottom (in phpmyadmin)
It is easiest way as per me