Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Error SQL query:

(错误的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 said:

(MySQL说:)

#1046 - No database selected

need some help here.

(在这里需要一些帮助。)

  ask by steph translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
570 views
Welcome To Ask or Share your Answers For Others

1 Answer

You need to tell MySQL which database to use:

(您需要告诉MySQL要使用哪个数据库:)

USE database_name;

before you create a table.

(在创建表之前。)

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

(如果数据库不存在,则需要按以下方式创建它:)

CREATE DATABASE database_name;

followed by:

(其次是:)

USE database_name;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...