Go to the first, previous, next, last section, table of contents.


GRANT syntax. (Compatibility function).

GRANT (ALL PRIVILEGES | (SELECT, INSERT, UPDATE, DELETE,
 REFERENCES (column list), USAGE))
 ON table TO user,... [WITH GRANT OPTION]

This command doesn't do anything. It is only in MySQL for compatibility reasons. (To make it easier to port code from other SQL servers). Privileges in MySQL are handled with the MySQL grant tables. See section How does the privilege system work?


Go to the first, previous, next, last section, table of contents.