Mariadb语法错误1064(42000)

时间:2016-04-10 07:10:21

标签: mysql mariadb

所以我在尝试在MariaDB中运行此脚本时遇到错误,如下所示:“ERROR 1064(42000):您的SQL语法中有错误;请查看与您的MariaDB服务器版本对应的手册在

附近使用正确的语法
CREATE TABLE customers (
  customer_id int NOT NULL,
  customer_f

第1行

奇怪的是,MariaDB似乎正在读取命令的第一行,然后将下一行的一点作为1行。整个脚本如下:如果有人可以提供帮助,我会非常感激。

DROP TABLE customers;
DROP TABLE orders;
DROP TABLE products;
DROP TABLE orderitem;
​
CREATE TABLE customers (
customer_id INT NOT NULL AUTO_INCREMENT,
customer_firstname VARCHAR(20) NOT NULL,
customer_lastname VARCHAR(40) NOT NULL,
customer_phone CHAR(10) NOT NULL,
customer_email VARCHAR(60) NOT NULL,
customer_address VARCHAR(40) NOT NULL,
customer_city VARCHAR(40) NOT NULL,
customer_state CHAR(2) NOT NULL,
customer_zip VARCHAR(10) NOT NULL,
customer_aptnum VARCHAR(5) NOT NULL,
customer_pass CHAR(40) NOT NULL,
customer_type VARCHAR(10) NOT NULL,
PRIMARY KEY (customer_id),
INDEX customer_fullname (customer_firstname, customer_lastname),
UNIQUE (customer_email)
); 
​
CREATE TABLE orders (
order_id INT NOT NULL AUTO_INCREMENT,
order_datetime DATETIME NOT NULL,
order_trackingnumber VARCHAR(20) NOT NULL,
order_shipdate DATETIME NOT NULL,
order_shipmethod VARCHAR(10) NOT NULL,
order_shipcarrier VARCHAR(10) NOT NULL,
order_totalprice DECIMAL,
customer_id  INT NOT NULL,
PRIMARY KEY (order_id),
FOREIGN KEY (customer_id) REFERENCES customers(customer_id)
UNIQUE (order_trackingnumber)
); 
​
​
CREATE TABLE products (
product_id VARCHAR(30) NOT NULL AUTO_INCREMENT,
product_beginningstockdate DATETIME NOT NULL,
product_endstockdate DATETIME,
product_category VARCHAR(15) NOT NULL,
product_name VARCHAR(60) NOT NULL,
product_availablequantity SMALLINT NOT NULL,
product_totalquantity SMALLINT NOT NULL,
product_price  DECIMAL NOT NULL,
product_taxable DECIMAL NOT NULL,
product_itemstatus VARCHAR(15) NOT NULL,
product_discountpercent DECIMAL,
product_soldinstore char(3),
product_soldonwebsite char(3),
PRIMARY KEY (product_id),
UNIQUE (product_name)
); 
​
/*INSERT INTO products (product_description, product_beginningstockdate, product_endstockdate, product_category, product_name, product_availablequantity, product_totalquantity, product_price, product_taxable, product_itemstatus, product_discountpercent, product_soldinstore, product_soldonwebsite) 
VALUES 
(...),
(...),
........ */
​
CREATE TABLE orderitem (
orderitem_id INT NOT NULL AUTO_INCREMENT,
order_id INT NOT NULL,
product_id VARCHAR(30) NOT NULL,
orderitem_priceperunit DECIMAL NOT NULL,
orderitem_quantityordered TINYINT NOT NULL,
PRIMARY KEY (orderitem_id),
FOREIGN KEY (order_id) REFERENCES orders(order_id),
FOREIGN KEY (product_id) REFERENCES orders(product_id)
); 

2 个答案:

答案 0 :(得分:2)

将代码复制并粘贴到NotePad ++中,然后在十六进制编辑器中查看它,表明您在语句之间的每个空行中都有80 8b 0a

该字节序列是zero-width space字符的UTF-8编码形式。

确保你删除它们 - 然后它应该有用。

(如果你正在使用NotePad ++和十六进制编辑器插件,那么在十六进制视图中你可以简单地用空字符串替换e2 80 8b。否则,在任何其他文本编辑器中,转到上一行的末尾,从空行到下一行的开头选择所有内容,然后按Enter键替换选择也应该有效。)

答案 1 :(得分:1)

我也有类似的挫败感,发现我需要在程序周围更改定界符。也许它也可以在这里工作。

DELIMITER //
CREATE PROCEDURE
....
BEGIN
END //
DELIMITER ;