mysql哪些函数可以获取各种时间类型,下面编程教程网小编给大家介绍一下各种mysql函数!
获取当地具体日期和时间(年月日时分秒)
//方法一
select now() as time
//方法二
select LOCALTIME() as time
//方法三
select current_timestamp() as time
//方法四
select LOCALTIMESTAMP() as time
//方法五
select sysdate() as time
获取当地具体日期和时间(年月日)
//方法一
select curdate() as time
//方法二
select current_date() as time
获取具体的时间(时分秒)
//方法一
select curtime() as time
//方法二
select current_time() as
//方法三
select utc_time() as time
以上是编程学习网小编为您介绍的“mysql哪些函数可以获取各种时间类型”的全面内容,想了解更多关于 mysql 内容,请继续关注编程基础学习网。
沃梦达教程
本文标题为:mysql哪些函数可以获取各种时间类型
基础教程推荐
猜你喜欢
- MySQL执行事务的语法和流程 2024-03-24
- PHP 疑难杂症:解决守护进程时 Redis 假死 2024-04-25
- MySQL表锁、行锁和页锁 2024-03-24
- Redis25:redis的其它模块:队列、位图、HyperLogLog、布隆过滤器、GeoHash 2024-04-25
- 如何批量删除Redis数据库中的Key 2024-04-18
- SpringBoot系列之MongoDB Aggregations用法详解 2023-07-15
- 揭秘SQL优化技巧 改善数据库性能 2024-01-02
- Mysql查询语句优化技巧 2023-12-05
- SpringSession通过Redis统计在线用户数量的实现代码 2023-07-13
- Python&Redis 发布订阅 2023-09-11