0

我正在尝试在我的数据库中创建一个表(由 godaddy 托管)

当我尝试在数据库中创建一个表时,它会给我一个错误

#1046 - No database selected 

所以我正在尝试创建一个这样的表

USE orderformuser

CREATE TABLE `users`(
`user_id` int NOT NULL AUTO_INCREMENT,
`username` char(25),
`password` char(40),
UNIQUE (User_Id)
)

但是我现在收到这个错误..我只是不知道我做错了什么

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE TABLE `users`(
`user_id` int NOT NULL AUTO_INCREMENT,
`username` char(2' at line 3

任何帮助,将不胜感激

4

2 回答 2

4

您忘记;use .... ;用于终止mysql中的行。

USE orderformuser;

CREATE TABLE `users`
(
   `user_id` int NOT NULL AUTO_INCREMENT,
   `username` char(25),
   `password` char(40),
   CONSTRAINT u_pk PRIMARY KEY (User_Id)
);
于 2012-09-26T08:37:38.460 回答
2

首先,您必须创建一个空白数据库 orderformuser。在您必须进入此数据库并尝试使用更改代码创建表后,因为您忘记了“;” 像这样:

USE orderformuser;
CREATE TABLE `users`
(
`user_id` int NOT NULL AUTO_INCREMENT,
`username` char(25),
`password` char(40),
UNIQUE (User_Id)
)
于 2012-09-26T08:39:16.710 回答