MINUTE_FLOOR
説明
MINUTE_FLOOR関数は、入力されたdatetime値を指定された分の期間の最も近い値まで切り下げます。originが指定された場合は、それをベースラインとして使用します。そうでない場合は、0001-01-01 00:00:00がデフォルトになります。この関数はDATETIME型の処理をサポートしています。
日付計算式:
はベースライン時刻からターゲット時刻までの期間数を表します。
構文
MINUTE_FLOOR(`<datetime>`)
MINUTE_FLOOR(`<datetime>`, `<origin>`)
MINUTE_FLOOR(`<datetime>`, `<period>`)
MINUTE_FLOOR(`<datetime>`, `<period>`, `<origin>`)
パラメータ
| パラメータ | 説明 |
|---|---|
<datetime> | 切り捨てを行う日時値。date/datetime/timestamptz型の入力をサポートします。具体的な形式については、timestamptz的转换、datetime conversion、date conversionを参照してください。 |
<period> | 分間隔値、INT型で、各間隔に含まれる分数を表します。 |
<origin> | 間隔の開始時点、DATETIME型。デフォルト値は0001-01-01 00:00:00です。 |
戻り値
TIMESTAMPTZ、DATETIME、またはDATE型の値を返します。入力された日時に基づいて、指定された分周期の最も近い時刻に切り捨てた後の時刻値を返します。戻り値の精度は入力パラメータdatetimeの精度と同じです。
- 入力がTIMESTAMPTZ型の場合、まずlocal_timeに変換され(例:
2025-12-31 23:59:59+05:00はsession変数が+08:00の場合、local_time2026-01-01 02:59:59を表します)、その後MINUTE_FLOOR計算を実行します。 - 入力時刻値(
<date_or_time_expr>と<period>)がTIMESTAMPTZ型とDATETIME型の両方を含む場合、出力はDATETIME型になります。 <period>が非正数(≤0)の場合、エラーを返します。- いずれかのパラメータがNULLの場合、NULLを返します。
- periodが指定されていない場合、デフォルトで1分間隔になります。
<origin>が指定されていない場合、デフォルトで0001-01-01 00:00:00をベースラインとします。- 入力がDATE型(年、月、日のみを含む)の場合、その時刻部分はデフォルトで00:00:00になります。
<origin>の日時が<period>より後の場合でも、上記の式に従って計算されますが、周期kは負の値になります。date_or_time_exprにスケールがある場合、返される結果もスケールを持ち、小数部分はゼロになります。
例
-- Using default period of one minute and default origin time 0001-01-01 00:00:00
SELECT MINUTE_FLOOR('2023-07-13 22:28:18') AS result;
+---------------------+
| result |
+---------------------+
| 2023-07-13 22:28:00 |
+---------------------+
-- Using five minutes as one period, rounding down with default origin point
SELECT MINUTE_FLOOR('2023-07-13 22:28:18.123', 5) AS result;
+----------------------------+
| result |
+----------------------------+
| 2023-07-13 22:25:00.000 |
+----------------------------+
-- If input datetime is exactly at a period starting point, return the input datetime
SELECT MINUTE_FLOOR('2023-07-13 22:25:00', 5) AS result;
+----------------------------+
| result |
+----------------------------+
| 2023-07-13 22:25:00.000000 |
+----------------------------+
-- Only with origin date and specified date
select minute_floor("2023-07-13 22:28:18", "2023-07-01 12:21:23");
+------------------------------------------------------------+
| minute_floor("2023-07-13 22:28:18", "2023-07-01 12:21:23") |
+------------------------------------------------------------+
| 2023-07-13 22:27:23 |
+------------------------------------------------------------+
-- Specifying origin time
SELECT MINUTE_FLOOR('2023-07-13 22:28:18', 5, '2023-07-13 22:20:00') AS result;
+---------------------+
| result |
+---------------------+
| 2023-07-13 22:25:00 |
+---------------------+
-- Datetime with scale, all decimal places are truncated to 0
SELECT MINUTE_FLOOR('2023-07-13 22:28:18.456789', 5) AS result;
+----------------------------+
| result |
+----------------------------+
| 2023-07-13 22:25:00.000000 |
+----------------------------+
-- Input is of DATE type (default time 00:00:00)
SELECT MINUTE_FLOOR('2023-07-13', 30) AS result;
+---------------------+
| result |
+---------------------+
| 2023-07-13 00:00:00 |
+---------------------+
-- TimeStampTz sample, SET time_zone = '+08:00'
-- Convert to local_time (2026-01-01 02:59:59) and then perform MINUTE_FLOOR
SELECT MINUTE_FLOOR('2025-12-31 23:59:59+05:00');
+-------------------------------------------+
| MINUTE_FLOOR('2025-12-31 23:59:59+05:00') |
+-------------------------------------------+
| 2026-01-01 02:59:00+08:00 |
+-------------------------------------------+
-- If parameters contain both TimeStampTz and Datetime types, output DateTime type
SELECT MINUTE_FLOOR('2025-12-31 23:59:59+05:00', '2025-12-15 00:00:00.123');
+----------------------------------------------------------------------+
| MINUTE_FLOOR('2025-12-31 23:59:59+05:00', '2025-12-15 00:00:00.123') |
+----------------------------------------------------------------------+
| 2026-01-01 02:59:00.123 |
+----------------------------------------------------------------------+
--- If the <origin> date and time is after the <period>, it will still be calculated according to the above formula, but the period k will be negative
SELECT MINUTE_floor('0001-01-01 12:32:18', 5, '2028-07-03 22:20:00') AS result;
+---------------------+
| result |
+---------------------+
| 0001-01-01 12:30:00 |
+---------------------+
-- Period is non-positive, returns error
SELECT MINUTE_FLOOR('2023-07-13 22:28:18', -5) AS result;
ERROR 1105 (HY000): errCode = 2, detailMessage = (10.16.10.3)[E-218]Operation minute_floor of 2023-07-13 22:28:18, -5 out of range
-- Any parameter is NULL, returns NULL
SELECT MINUTE_FLOOR(NULL, 5), MINUTE_FLOOR('2023-07-13 22:28:18', NULL) AS result;
+------------------------+--------+
| minute_floor(NULL, 5) | result |
+------------------------+--------+
| NULL | NULL |
+------------------------+--------+