I tried many examples but no one could fix my problem. Below are some examples that I have tried. simply I need to update string date to nullable date time column. what I got is 000-00-00 or NULL column.
thanks for your help I am new at mysql trying to understand :/
Update `scorelisting`
set MaxScoreDate=DATE(STR_TO_DATE('13.05.2012 15:31:00','%d.%m.%Y %H:%M:%S'))
where UserId=258070
Update `scorelisting`
set MaxScoreDate=STR_TO_DATE('13.05.2012 15:31:00','%d.%m.%Y %H:%M:%S')
where UserId=258070
Update `scorelisting`
set MaxScoreDate=DATE('%d.%m.%Y %H:%M:%S',STR_TO_DATE('13.05.2012 15:31:00'))
where UserId=258070
Update `scorelisting`
set MaxScoreDate=DATE('%d.%m.%Y %H:%M:%S',strtotime('13.05.2012 15:31:00'))
where UserId=258070
