Tanggal SQL Dapatkan Bulan
-- Will return 'November'
select to_char(to_date('15-11-2010', 'DD-MM-YYYY'), 'Month') from dual
Swiss IT knive
-- Will return 'November'
select to_char(to_date('15-11-2010', 'DD-MM-YYYY'), 'Month') from dual
-- Month of today example:
SELECT MONTH(GETDATE()) AS Month;
month(date)
SELECT MONTH( the_date );