mysql - How do I get records where the data started at a particular day? -
i have following sql code show id
, date
records date started @ 23/xx/xx
is correct?
select id, date xxx date = yyyy/mm/23;
see dayofmonth
select id, date your_table dayofmonth(date) = 23
Comments
Post a Comment