返回顶部
首页 > 资讯 > 数据库 >MySQL第三课 函数以及时间相关问题
  • 946
分享到

MySQL第三课 函数以及时间相关问题

2024-04-02 19:04:59 946人浏览 安东尼
摘要

1)删除某一个时间之前的记录delete from cs_storage_video_file where date(start_time) <= '2017-10-27'问题,目

1)删除某一个时间之前的记录

delete from cs_storage_video_file where date(start_time) <= '2017-10-27'

问题,目前只是支持精确到日,无法支持时分秒,如下指令删除异常

delete from cs_storage_video_file where date(start_time) <= '2017-10-27 09:00:00'


2)uuid函数提供一个默认的id


3)now函数提供当前的时间,格式是datetime

例子

update cs_fire_control_device set temperature = 23, time = now()   where id=‘123456789’


Mysql服务器版本 5.7.20,数据类型选择datetime,长度和小数点设置无法保存(通过NavCat工具访问数据库),都只能是零(mysql版本决定),这个版本时间类型无法精确到毫秒或者微妙

测试当前版本是否可以精确到毫秒
CREATE TABLE `testmilisecond` (
`tab1_id` VARCHAR(11) DEFAULT NULL,
`create` TIMESTAMP(3) NULL DEFAULT NULL,
`create2` DATETIME(3) DEFAULT NULL
) ENGINE=INNODB DEFAULT CHARSET=utf8

SELECT * FROM testmilisecond;



4) 格式化datetime返回一个日期的字符串

date_fORMat(cs_alarm_templet.start_time,'%Y-%m-%d %H:%i:%s') as szstart_time

5) 格式化time返回一个时分秒的字符串
1.    convert(cs_alarm_model_times.start_time, CHAR) as szstart_time
2.     convert(cs_alarm_model_times.start_time, BINARY) as szstart_time
3.    cast(cs_alarm_model_times.start_time AS CHAR) as szstart_time


您可能感兴趣的文档:

--结束END--

本文标题: MySQL第三课 函数以及时间相关问题

本文链接: https://lsjlt.com/news/43852.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作