Reading MySQL manuals in MySQL monitor?
Problem: To read MySQL's manual effectively Error: mysql> create database plastronics -> ; ERROR 1007 (HY000): Can't create database 'plastronics'; database exists mysql> Question: How do I check it quickly like in Vim : ":h 1007"? The introduction material I was reading A list of error messages is available on the MySQL website. However, it isn't really going to help you if the error the server spit out didn't. You asked MySQL to create a database; MySQL replied that it can't create that database because it already exists. You can't have two databases on the same server with the same name.