- 代碼: 選擇全部
ERROR 1064 at line 24: 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 'CURRENT_TIMESTAMP,
PRIMARY KEY (name)
)' at line 4
下面是mysql_populate.sql其中的一段
- 代碼: 選擇全部
-- # realm (group) table
CREATE TABLE realm (
name CHAR(16) NOT NULL,
title CHAR(64) NOT NULL,
changed TIMESTAMP(14) DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (name)
);