MySQL PERIOD_ADD() Fungsi
Contoh
Tambahkan jumlah bulan tertentu ke suatu periode:
SELECT PERIOD_ADD(201703, 5);
Definisi dan Penggunaan
Fungsi PERIOD_ADD() menambahkan jumlah bulan tertentu ke suatu periode.
Fungsi PERIOD_ADD() akan mengembalikan hasil yang diformat sebagai YYYYMM.
Sintaksis
PERIOD_ADD(period, number)
Nilai Parameter
Parameter | Description |
---|---|
period | Required. A period. Format: YYMM or YYYYMM |
number | Required. The number of months to add to period. Both positive and negative values are allowed |
Detail Teknis
Bekerja di: | Dari MySQL 4.0 |
---|
Lebih Banyak Contoh
Contoh
Tambahkan jumlah bulan tertentu ke suatu periode:
SELECT PERIOD_ADD(201703, 15);
Contoh
Tambahkan jumlah bulan tertentu ke suatu periode:
SELECT PERIOD_ADD(201703, -2);