如何使用 phpmyadmin 在 MySQL 中导出特定列?
我在 MySQL 数据库中有数以千计的网站列表和其他信息.
I do have thousands of website list and other info in MySQL database.
我只想将名为web"的网站列导出为 excel 或 text 或 csv.
I want only website column named "web" to be exported to excel or text or csv.
我知道如何导出整个数据,但不知道如何导出特定列.
I know how to export the whole data but dont know how to export particular column.
推荐答案
查询
SELECT `web` FROM `yourtablename`
或者仅导出唯一记录:
SELECT DISTINCT `web` FROM `yourtablename`
然后点击底部给出的导出链接(在phpmyadmin中)
Then click export link given on bottom (in phpmyadmin)
对我来说这是最简单的方法
It is easiest way as per me
相关文章