我创建了一个包含3列的表 ID(主键),何时(某些varchar值),Created_date(时间戳)
使用“何时”创建任何问题来命名字段?
我一直在查询update table set table.when='$when' where ID='1'
请建议
答案 0 :(得分:7)
update `table`
set `table`.when='$when'
where ID='1'
否则,用反引号包装
update `table`
set `when`='$when'
where ID='1'
其他链接:
如果可能,请不要使用保留关键字列表中的名称或标识符来避免问题。