Mysql – Drop privilege to tables only, Not to database

MySQLpermissionsusers

I created a user with drop privilege to a database.

How can I create a user who has the privilege to drop tables of a specified database, but not database.

Best Answer

Do GRANT DROP ON TABLE thedatabase.* TO user1. The MySQL Reference Manual is a great place to look for this kinds of things.