There is a command in MySQL that can show you all the permissions that you have. Team:
SHOW GRANTS;
This will give you a result similar to:
root @ (none) ~> show grants;
+ ------------------------------------------------- -------------------- +
| Grants for root @ localhost |
+ ------------------------------------------------- -------------------- +
| GRANT ALL PRIVILEGES ON *. * TO 'root' @ 'localhost' WITH GRANT OPTION |
+ ------------------------------------------------- -------------------- +
1 row in set (0.00 sec)
.