I want to create a user with permission to create and drop views but not drop tables or databases. This is so I can play around when testing my views without the risk of accidentally deleting a table.
There is a GRANT CREATE VIEW
privilege but there doesn't appear to be a GRANT DROP VIEW
counterpart. GRANT DROP
apparently applies to databases, tables and views.
Is this possible in MySQL?