mysql这段sql哪里有错误DROP TABLE IF EXISTS Order;CREATE TABLE Order ID INT NOT NULL AUTO_INCREMENT COMMENT ID ORDER_TIME DATE COMMENT 下单时间 PRICE_SUM DECIMAL246 COMMENT 总金额 STATE INT
The error in the SQL is that "Order" is a reserved keyword in MySQL, so it cannot be used as a table name. You should use a different name for the table instead.
原文地址: http://www.cveoy.top/t/topic/bzrp 著作权归作者所有。请勿转载和采集!