1.addtime()
날짜에 지정된 초 수를 추가합니다.
select addtime(now(),1); -- 加1秒
2.adddate()
두 번째 매개 변수를 직접 채우는 경우 두 가지 방법이 있습니다. 숫자를 입력하면 날짜에 추가됩니다. 간격을 입력하면 날짜에 지정된 간격 시간이 추가됩니다.date_add()
날짜에 시간 간격을 추가합니다. . 간격 시간만 매개변수로 사용할 수 있습니다. 사용법은 adddate()
select adddate(now(),1); -- 加1天 select adddate(now(), interval 1 day); -- 加1天 select adddate(now(), interval 1 hour); --加1小时 select adddate(now(), interval 1 minute); -- 加1分钟 select adddate(now(), interval 1 second); -- 加1秒 select adddate(now(), interval 1 microsecond); -- 加1毫秒 select adddate(now(), interval 1 week); -- 加1周 select adddate(now(), interval 1 month); -- 加1月 select adddate(now(), interval 1 quarter); -- 加1季 select adddate(now(), interval 1 year); -- 加1年
4.subtime()
date
select date_add(now(), interval 1 day); -- 加1天 select date_add(now(), interval 1 hour); -- 加1小时 select date_add(now(), interval 1 minute); -- 加1分钟 select date_add(now(), interval 1 second); -- 加1秒 select date_add(now(), interval 1 microsecond); -- 加1毫秒 select date_add(now(), interval 1 week); -- 加1周 select date_add(now(), interval 1 month); -- 加1月 select date_add(now(), interval 1 quarter); -- 加1季 select date_add(now(), interval 1 year); -- 加1年
5에서 지정된 초 수를 뺍니다.
사용 방법은 adddate() 함수와 동일합니다. 사용 방법은 두 가지가 있습니다. 두 번째 매개 변수는 숫자로 직접 채워지는 경우 날짜에서 지정된 일수를 빼는 것입니다. 간격이 채워지면 날짜
select subtime(now(), 1); -- 减1秒
6에서 지정된 간격 시간을 빼는 것입니다.date_sub()
사용법은 date_add() 함수와 일치하며 날짜에서 시간 간격을 빼면 됩니다. 간격 시간만 매개변수로 사용하세요
select subdate(now(),1); -- 减1天 select subdate(now(), interval 1 day); -- 减1天 select subdate(now(), interval 1 hour); --减1小时 select subdate(now(), interval 1 minute); -- 减1分钟 select subdate(now(), interval 1 second); -- 减1秒 select subdate(now(), interval 1 microsecond); -- 减1毫秒 select subdate(now(), interval 1 week); -- 减1周 select subdate(now(), interval 1 month); -- 减1月 select subdate(now(), interval 1 quarter); -- 减1季 select subdate(now(), interval 1 year); -- 减1年권장: "
mysql tutorial
"위 내용은 MySQL 날짜 덧셈 및 뺄셈 기능 요약의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!