mysql创建表和数据库试设置编码以及默认当前时间的写法

create database make character set utf8;

use make;

create table users(
	user_id int not null auto_increment primary key comment '用户id',
	user_name varchar(64) not null comment '用户名',
	c_time timestamp default current_timestamp comment '创建时间', --插入操作时会自动更新当前时间
	u_time timestamp default current_timestamp on update current_timestamp comment '更新时间' --更新操作 时会自动更新为当前时间
) engine = InnoDB default charset = utf8 comment = '用户表';

你可能感兴趣的:(mysql)