0
jagdish posted
MySQL : how to get yesterday date by function
how to show a record that had the date of yesterday or update date of yesterday in the date type field
select where `datefield`=subtract(date(),1)
can I subtract normally from the current date by subtract function
or can i use like this
select where `datefield`=date()-1
can i do date()-1 like this
I get errors for all above practice
show me path