MySql 時間欄位

在資料表設立一個修改資料的時間欄位

1
2
3
4
5
6
7
8
create table if not exists sound(
id varchar(50) not null,
name varchar(100) not null,
modify_datetime datetime default current_timestamp on update current_timestamp,
url varchar(500),
graph longblob,
primary key (id)
);