错误 1046 No database Selected,如何解决?

2021-11-20 00:00:00 sql mysql mysql-error-1046

错误SQL 查询:

--
-- Database: `work`
--
-- --------------------------------------------------------
--
-- Table structure for table `administrators`
--
CREATE TABLE IF NOT EXISTS `administrators` (

`user_id` varchar( 30 ) NOT NULL ,
`password` varchar( 30 ) NOT NULL ) ENGINE = InnoDB DEFAULT CHARSET = latin1;

MySQL 说:

#1046 - No database selected

这里需要一些帮助.

推荐答案

你需要告诉MySQL使用哪个数据库:

You need to tell MySQL which database to use:

USE database_name;

在创建表之前.

如果数据库不存在,您需要将其创建为:

In case the database does not exist, you need to create it as:

CREATE DATABASE database_name;

紧随其后:

USE database_name;

相关文章