Explain GRANT command in MySQL.



Explain GRANT command in MySQL...

Answer / hrindows@gmail.com

When a new MySQL user is created, it requires certain privileges to perform various database operations.
GRANT command grants certain privileges to the user.
For example below statement grants permission to run SELECT and INSERT on TABLE customertable to user username@localhost.
GRANT SELECT, INSERT ON customertable TO ‘username’@’localhost’

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MySQL Interview Questions

How do you create a schema?

0 Answers  


can you elaborate on blob and text in mysql? : Mysql dba

0 Answers  


How many TRIGGERS are allowed in MySql table?

0 Answers  


Why do gaps in sequences occur?

0 Answers  


What is ACID?

2 Answers  






Explain % and _ inside like statement?

0 Answers  


What are the features of Stored Procedures in MYSQL?

1 Answers  


What are the different data types in mysql?

0 Answers  


Why do we use group by and order by function in mysql?

0 Answers  


What is the latest mysql version?

0 Answers  


What are CSV tables?

1 Answers  


How do I start mysql from command line?

0 Answers  


Categories