首頁 >資料庫 >mysql教程 >如何在不使用臨時表或變數的情況下在 MySQL 中產生一系列不重複的日期?

如何在不使用臨時表或變數的情況下在 MySQL 中產生一系列不重複的日期?

Susan Sarandon
Susan Sarandon原創
2024-12-08 10:21:11997瀏覽

How Can I Generate a Series of Non-Duplicate Dates in MySQL Without Using Temporary Tables or Variables?

產生一系列日期(非重複方法)

建立特定範圍內的一系列日期是在以下環境中遇到的常見任務各種編程應用程式。 MySQL 提供了多種方法來實現此目的。

一種有效的解決方案,特別是在面臨禁止臨時表創建和變數設定等限制時,是利用自連接查詢。此方法產生指定時間範圍內的日期列表,如以下程式碼片段所示:

select * from 
(select adddate('1970-01-01',t4*10000 + t3*1000 + t2*100 + t1*10 + t0) gen_date from
 (select 0 t0 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t0,
 (select 0 t1 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t1,
 (select 0 t2 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t2,
 (select 0 t3 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t3,
 (select 0 t4 union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) t4) v
where gen_date between '2017-01-01' and '2017-12-31'

此查詢產生「2017-01-01」和「2017-12」之間的一系列日期- 31' 透過使用adddate() 函數和表示日、月和年的各種子查詢來操作日期值。

這種方法提供了一個簡潔的方法來產生一系列日期的有效方法,特別是在臨時表建立或變數設定不可行的情況下。

以上是如何在不使用臨時表或變數的情況下在 MySQL 中產生一系列不重複的日期?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn