top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Users and Groups in MySQL

+2 votes
267 views

Has anyone seen a plugin for MySQL that will allow you to set up users and groups for access where you can have a user who can login, create db etc but ONLY see the stuff that belongs to them?

I'm speaking of a shared server where multiple people can use the same instance but be fully separated just like a file share.

posted Mar 1, 2015 by Tarun Singhal

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

MySQL don't support user groups

but it has all features for privileges like for tables, views and even columns, you can even restrict the access of a colum of a view to a user and make a difference if that same user comes from ip-address A or ip-address B

not sure if you find any RDBMS which is more flexible than mysql.

answer Mar 1, 2015 by Abhay
...