Mysql
 sql >> Database >  >> RDS >> Mysql

Aggiungi i campi DATE e TIME per ottenere il campo DATETIME in MySQL

Dovrebbe essere facile come

UPDATE table SET datetime_field = CONCAT(date_field, " ", time_field);