In MySQL am getting error for above. Error is : Incorrect datetime value '31/July/2018' for function str to date
Update mytable
set Date1 = STR_TO_DATE('31/July/2018', '%d/%b/%Y')
where 'Date' IS NOT NULL;
Need help with what could be wrong with above.