How do I export particular column in MySQL using phpmyadmin?

前端 未结 5 1706
有刺的猬
有刺的猬 2020-12-29 21:13

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

5条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-29 22:03

    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

提交回复
热议问题