delete from table t where t.列名=你要的条件
DROP关键字
delete from table where id = 3delete from table where date = ''2012-01-11 10:43:13'提示你有语法错误你是不是没写 = ,顺便看看这个字段的类型是什么,需不需要转换
delete tabName where 列名 = 条件
delete from 某个表 where 指定的条件。