how to make a selection from my request table with date field where the date is with date = ("Y-m-d) select only the month and show it in a td
how to make a selection from my request table with date field where the date is with date = ("Y-m-d) select only the month and show it in a td
To send for the month you can use the extract function, as long as your date is of the DateTime type, if it was of the String type you could use the function SUBSTR(str, position, [length])
, greetings
SELECT EXTRACT(MONTH FROM "2017-06-15");