在 MySQL 中创建带有 TIMESTAMP 字段的表?

mysqlmysqli database

为此,您可以在 MySQL 中使用 TIMESTAMP 关键字。

让我们创建一个表 −

mysql> create table demo50
−> (
−> id int not null auto_increment primary key,
−> start_date timestamp default current_timestamp not null,
−> end_date timestamp default current_timestamp not null
−> );
Query OK, 0 rows affected (1.35 sec)

使用 insert 命令向表中插入一些记录 −

mysql> insert into demo50 values();
Query OK, 1 row affected (0.15 sec)

mysql> insert into demo50(end_date) values('2020−12−21');
Query OK, 1 row affected (0.07 sec)

mysql> insert into demo50(start_date) values('2020−01−01');
Query OK, 1 row affected (0.14 sec)

使用 select 语句显示表中的记录 −

mysql> select *from demo50;

这将产生以下输出 −

+----+---------------------+---------------------+
| id | start_date          | end_date            |
+----+---------------------+---------------------+
|  1 | 2020−11−04 20:54:31 | 2020−11−04 20:54:31 |
|  2 | 2020−11−04 20:54:53 | 2020−12−21 00:00:00 |
|  3 | 2020−01−01 00:00:00 | 2020−11−04 20:55:04 |
+----+---------------------+---------------------+
3 rows in set (0.00 sec)

相关文章