mysql建表时是否不能同时设置多个字段为current_timecreate table t1(
       c1 timestamp DEFAULT CURRENT_TIMESTAMP
)
不会报错
create table t2(
       c1 timestamp DEFAULT CURRENT_TIMESTAMP,
       c2 timestamp DEFAULT CURRENT_TIMESTAMP
)
会报错
其他数据能这样建表吗?我没试过 如 db2、oracle