Give the syntax of GRANT commands?

Answers were Sorted based on User's Feedback



Give the syntax of GRANT commands?..

Answer / rajan vardawaj

The generic syntax for GRANT is as following GRANT [rights]
on [database] TO [username@hostname] IDENTIFIED BY
[password] Now rights can be: a) ALL privilages b)
Combination of CREATE, DROP, SELECT, INSERT, UPDATE and
DELETE etc. We can grant rights on all databse by usingh *.*
or some specific database by database.* or a specific table
by database.table_name.

Is This Answer Correct ?    8 Yes 0 No

Give the syntax of GRANT commands?..

Answer / kamal

GRANT ALL on *.databasename to root identified by 123456

Is This Answer Correct ?    4 Yes 0 No

Give the syntax of GRANT commands?..

Answer / sandeep kumar

GRANT ALL ON mydb.mytbl TO 'someuser'@'somehost';
GRANT SELECT, INSERT ON mydb.mytbl TO 'someuser'@'somehost';

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More MySQL Interview Questions

Explain the storage engines in mysql?

0 Answers  


What is definer in mysql trigger?

0 Answers  


How to determine the location of the data directory?

0 Answers  


Why mysql is used with php?

0 Answers  


What is the difference between the DELETE TABLE and TRUNCATE TABLE commands in MySQL?

1 Answers  






What are procedures in mysql? Explain

0 Answers  


What is a storage engine?

0 Answers  


How can we optimize stored procedure?

0 Answers  


What is the maximum length of a table name, database name, and fieldname in MySQL?

3 Answers   Accenture, Pioneer, TISL,


What is definer in mysql?

0 Answers  


Is mysql a backend?

0 Answers  


How does triggers work in mysql?

0 Answers  


Categories