2016-05-11 128 views
-2

1064 - 您的SQL語法錯誤;檢查對應於你的MySQL服務器版本使用附近的 '值' TransactionID 'INT(11)DEFAULT NULL正確的語法手冊, PRIMARY KEY(sid), KEY pid在行(pid)' 121064 - 您的SQL語法有錯誤嗎?

-- Table structure for table `products` 
CREATE TABLE IF NOT EXISTS 

`products` (`pid` int(11) NOT NULL AUTO_INCREMENT, 
`product` varchar(255) NOT NULL, 
`product_img` varchar(100) DEFAULT NULL, 
`price` int(11) DEFAULT NULL, 
`currency` varchar(10) DEFAULT 'USD', 
    PRIMARY KEY (`pid`) 
) ENGINE=InnoDB DEFAULT 
CHARSET=latin1 AUTO_INCREMENT=3 ; 

-- 
-- Dumping data for table `products` 
-- 

INSERT INTO `products` (`pid`, `product`, `product_img`, `price`) 
VALUES (1, 'White T-Shirt', 'white.png', 22), (2, 'Black T-Shirt', 'black.png', 30); 

    -------------------------------------------------------- 

    -- Table structure for table `sales` 

    CREATE TABLE IF NOT EXISTS 

`sales` (`sid` int(11) NOT NULL AUTO_INCREMENT, 
`pid` int(11) DEFAULT NULL, 
`uid` int(11) DEFAULT NULL, 
`saledate` date DEFAULT NULL, 
'transactionid' int(11) DEFAULT NULL, 
    PRIMARY KEY (`sid`), 
    KEY `pid` (`pid`), 
    KEY `uid` (`uid`) 
) 

ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ; 

-- 
-- Dumping data for table `sales` 
-- 

INSERT INTO `sales` (`sid`, 

`pid`, `uid`, `saledate`) VALUES 
(1, 2, 1, '0000-00-00'), 
(2, 2, 1, '0000-00-00'), 
(3, 1, 1, '0000-00-00'), 
(6, 2, 1, '2011-03-13'), 
(7, 2, 1, '2011-03-13'), 
(8, 2, 1, '2011-03-13'), 
(9, 2, 1, '2011-03-13'), 
(10, 2, 1, '2011-03-13'), 
(11, 1, 1, '2011-03-13'); 

回答

0

檢查有關transactionid的引號。您需要使用`而不是'

0

在這一行語法錯誤:

'transactionid' int(11) DEFAULT NULL, 

應該像其他列的聲明,由COLUMNNAMES周圍意味着字符不應該'單引號),它應該是`反色)符號

`transactionid` int(11) DEFAULT NULL, 
相關問題