-
admin int(4) 0 在主鍵 (id) 上方,中間缺少預設值
admin int(4) default 0,
-
在倒數第二行中,將 fmusize varchar(2000) default(0) not null 更改為 fmusize varchar(2000) default'0'不是空的,就是這樣。
預設語法錯誤。
-
fkeyid 的 int 長度沒有寫? 執行時,mysql提示什麼?
-
mysql中沒有數字型別,你想要乙個int型別嗎?
-
SQL Server直接不支援單次引用,MySQL不知道。 去掉 create 中的所有單引號,並將 inner town 的約束(包括主鍵和外來鍵關係)寫在一起。 我只知道SQL Server,我的SQL從未使用過。
順便說一句,您需要首先使用表所在的資料庫。 反正你自己找錯,我幫不上什麼忙。 希望。
-
你沒有注意'aaa'它與使用者不同嗎? 仔細看看這兩個表名上的引號,紅棗和通知是有區別的,可以把使用者的引號複製到aaa。 鑰匙廳。
-
如果將其更改為此方法,則可以在 MySQL 4 上成功建立表。
create table user1(
id integer unsigned not null auto_increment,username varchar(50)not null,password varchar(50)not null,mail varchar(255),homepage varchar(255),leves varchar(10) not null default 'user',create_time varchar(19) not null,primary key (id));
create table users (
id int(5) not null auto_increment,name varchar(20)not null,primary key (`id`) >>>More
房東:你的想法本身就錯了,使用資料庫最大的關鍵是資料庫能做什麼,不要輕易改變,你想要的那種結果,有必要嗎? 一點也不。 >>>More