Còn nếu bạn chọn nó trực tiếp từ information_schema thì sao?
select * from information_schema.user_privileges;
Bây giờ để phân tích cú pháp tập hợp kết quả, bạn có thể sử dụng ứng dụng khách hoặc chuyển nó thành sed để tạo tệp csv, tức là
mysql -uroot -p -e "select * from information_schema.user_privileges" | sed 's/\t/","/g;s/^/"/;s/$/"/;s/\n//g' > grants.csv
Tài liệu tham khảo: http://dev.mysql.com /doc/refman/5.0/en/user-privileges-table.html