| 
								        
								         
								        Explain some of the non-standard SQL commands in MySQL.There are many non-standard SQL commands that are supported by "mysql". Here is short list of some commonly used commands:
 1. "SHOW infoName" - Shows basic information of based on the specified information name.
 
 2. "SHOW infoName" - Shows basic information of based on the specified information name.
 
 3. "SET ..." - Sets new values to server or connection session variables.
 
 4. "GRANT ..." - Grants access privileges to users.
 
 5. "REVOKE ..." - Revokes access privileges from users.
 
 6. "CHECK TABLE tableName" - Checks the specified table for errors.
 
 7. "ANALYZE TABLE tableName" - Analyzes the specified table.
 
 8. "REPAIR TABLE tableName" - Repairs the specified table.
 
 9. "BACKUP TABLE tableName" - Backs up the specified table.
 
 10. "RESTORE TABLE tableName" - Restores the specified table.
 
 11. "USE databaseName" - Uses the specified database as the current database.
 
 12. "HELP topicName" - Returns help information on the specified topic.
 |