在OpenSIS安装的第2步中,我遇到了这个错误:
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 '(0) , start_date date, end_date date, published_profiles characte' at line 9
我该怎么办?
答案 0 :(得分:0)
http://forums.mysql.com/read.php?10,494735,494845#msg-494845
从“Timestamp(0)”中删除“(0)”解决了问题。
谢谢。
寻找:
CREATE TABLE PORTAL_NOTES(
id NUMERIC NOT NULL ,
school_id NUMERIC,
syear NUMERIC( 4, 0 ) ,
title CHARACTER VARYING( 255 ) ,
content CHARACTER VARYING( 5000 ) ,
sort_order NUMERIC,
published_user NUMERIC,
published_dateTIMESTAMP( 0 ) ,
start_date DATE,
end_date DATE,
published_profiles CHARACTER VARYING( 255 )
);