Shanshan Pythoner Love CPP

Sql Error Tips

2017-01-06


layout: post title: “SQL Errors Summary” category: SQL tags: SQL —

mysql Error

Error Code: 1046. No database selected Select the default DB to be used by double-clicking its name in the SCHEMAS list in the sidebar

You have to tell sql which database you are going to use.

show databases;
USE mysql;

Comments

Content