I have a column in my mySQL DB that has some rows. One of this row is a DATE, like this: 2012-02-01
What I want to achieve is to do a SELECT with PHP based only on the year and month.
The logic of the SELECT will be the following:
$q="SELECT * FROM projects WHERE Date="SELECT HERE THE SPECIFIC YEAR AND MONTH"";
The specific month and year will be be passed from a $_POST
variable, like this $_POST['period']="2012-02";
How can I do it?
question from:
https://stackoverflow.com/questions/65600199/echo-only-month-from-timestamp 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…