Reputation: 23
I can select, insert into table without specifying privilege, why?
Upvotes: 0
Views: 448
Reputation: 142710
That's because you are the owner of that table which means that you can do anything you want with it. You can perform any DML (select, insert, update, delete), but also any DDL on it - you can alter the table (add new columns, modify existing ones), truncate it or even drop it - all that without any additional privileges.
But, if you'd want to allow someone else do stuff on your tables, then you'd have to grant privileges to other users.
Upvotes: 1