ホームページ >データベース >mysql チュートリアル >MySQL の日付加算関数と減算関数の概要
1.addtime()
日付に指定された秒数を加算します
select addtime(now(),1); -- 加1秒
2。 adddate( )
使い方は2通りあり、第二引数に直接数値を記入すると日付に指定した日数を加算します、間隔を記入すると、指定された間隔時間を日付に追加します。
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年
3. date_add()
日付に時間間隔を追加します。これは間隔時間のみを使用できます。パラメータ。使用法は adddate()
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年
4 と同じです。subtime()
date
select subtime(now(), 1); -- 减1秒# から指定された秒数を減算します。
5. subdate()
adddate() 関数との併用 一貫して、2 つの使用方法があります 2 番目のパラメータに直接数値を入力した場合、指定された日数日付から減算されます。間隔が入力されている場合は、指定された間隔時間が日付から減算されます。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年
6. date_sub()
使用法は次のとおりです。 date_add() 関数と一致し、日付から時間間隔を減算します。これはパラメータとして間隔時間のみを使用できますselect date_sub(now(), interval 1 day); -- 减1天 select date_sub(now(), interval 1 hour); --减1小时 select date_sub(now(), interval 1 minute); -- 减1分钟 select date_sub(now(), interval 1 second); -- 减1秒 select date_sub(now(), interval 1 microsecond); -- 减1毫秒 select date_sub(now(), interval 1 week); -- 减1周 select date_sub(now(), interval 1 month); -- 减1月 select date_sub(now(), interval 1 quarter); -- 减1季 select date_sub(now(), interval 1 year); -- 减1年推奨: "
mysql チュートリアル》
以上がMySQL の日付加算関数と減算関数の概要の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。