Home > database >  Mysql database, the use of different users to create a table, for permission to have what effect
Mysql database, the use of different users to create a table, for permission to have what effect

Time:10-20

By using the following commands we can choose a different user login the mysql database

Mysql -u root -p

Mysql -u YourUser1 -p

Mysql -u YourUser2 -p


After using a different user login

Use mydatabase

The create table myTableXXXX,,,

use different users to create, for the following permissions will have any effect
? For example, the use of the trigger
? For example, the use of stored procedures (PROCEDURE)
  • Related