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
You could do a query like:SELECT web FROM table; and then just export that.
SELECT web FROM table;