[Err] 1293 - Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause
2016-07-01
SuccessKilled queryByIdWithSeckill(long seckillId);有问题啊,秒杀成功表里面应该存在(1000,phone1),(1000,phone2)这样的记录。是不是应该使用id和phone联合查询出秒杀成功的记录。不然就只有第一个人能秒杀成功,后面的都会异常。
2016-06-29
已采纳回答 / 键盘兔
我查了资料 这里不应该用 timestamp 要用 datetimetimestamp 不能由用户插入数据的时候指定值,它要么设置了默认值永远不变,要么就只有数据创建和改变的时候由mysql更新为当前时间。下文来自:http://lavasoft.blog.51cto.com/62575/280284MYSql5的日期类型有三种:date(只有日期)、datetime(时分秒)和timestamp(时分秒)。一、TIMESTAMP1、TIMESTAMP列必须有默认值,默认值可以为'0000-00-00 0...
2016-06-25
mybatis里面mapper映射的sql,如果要加单行注释的话,一定要在--后面跟一个空格啊,否则就解析失败了。
s.create_time as "seckill.create_time" --comments here
报错:
org.springframework.jdbc.BadSqlGrammarException:
### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL
s.create_time as "seckill.create_time" --comments here
报错:
org.springframework.jdbc.BadSqlGrammarException:
### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL
2016-06-24
http://www.mybatis.org/mybatis-3/zh/getting-started.html
2016-06-24