【教程分享】如何在MySQL数据库中查看系统时间(mysql系统时间查看)

MySQL数据库对于我们在开发过程中,需要时不时地查看系统时间,得到正确的时间非常重要,下面就通过一个小案例来分享如何在MySQL数据库中查看系统时间。

1.首先,我们需要建立一个连接的MySQL服务器,例如:

mysql -u username -p

2.之后,输入MySQL服务器密码,并成功连接服务器:

Enter password: ****
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 6
Server version: 5.7.30-1+b1 (Debian)

Copyright (c) 2000, 2021, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

3. 之后,使用MySQL的SYSDATE函数可以查看数据库的系统时间,方法如下:

mysql> SELECT SYSDATE();
+------------------+
| SYSDATE() |
+------------------+
| 2021-05-19 13:23 |
+------------------+
1 row in set (0.00 sec)

4. 如果需要得到更多时间的话,可以使用MySQL的UNIX_TIMESTAMP函数来得到UNIX时间戳,如下所示:

mysql> SELECT UNIX_TIMESTAMP();
+-------------------+
| UNIX_TIMESTAMP() |
+-------------------+
| 1621584381 |
+-------------------+
1 row in set (0.00 sec)

以上就是关于在MySQL数据库中查看系统时间的操作步骤,可以利用SYSDATE()函数得到正确的系统时间以及UNIX_TIMESTAMP()函数得到UNIX时间戳,希望上述步骤对你有所帮助!


数据运维技术 » 【教程分享】如何在MySQL数据库中查看系统时间(mysql系统时间查看)