更新某一条记录:
update logs set logofftime='2014/6/5 9:25:04' where userid=1 ORDER BY logontime desc limit 1
在sqlite3里面执行,显示[Err] 1 - near "ORDER": syntax error
该语句在mysql下面执行时没有问题的。刚用sqlite,不知道错在哪里,请各位指点,多谢。
难道sqlite3的Update不能连order by?那该如何写呢?
------解决方案--------------------
update limit是mysql的扩展语法
应该是不适合sqlite