我而MySQL的更新我的表字段 '刪除' 遇到錯誤MySQL的更新問題
CREATE TABLE IF NOT EXISTS `student` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text NOT NULL,
`delete` varchar(3) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=29 ;
INSERT INTO `student` (`name`, `delete`) VALUES('newa', 'no')
UPDATE SET delete='yes
#1064 - 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 'set delete-'yes'' at line 1
使用像「刪除」這樣的字段名稱實際上不是一個好習慣。如何「刪除」或類似的東西?刪除是SQL中的一個動詞。 – 2011-04-30 21:36:52