Mình đã thử repair table trong phpmyadmin và nó thông báo lỗi
nhưng khi check bằng lệnh
select * FROM mysql.user;
thì nó không thông báo lỗi gì.Nhưng khi dùng
select * FROM mysql.tables_priv;
thì nó lại trả về empty
Fix error Not enough privilege to view users
mysql.user is not a TABLE, it is a VIEW. If you want to repair a VIEW, you should type SQL:
REPAIR VIEW mysql.user;
3 Likes
Cảm ơn đã fix thành công