Converta a data e hora do MySQL em timestamp

Eu estou tentando converter datetime em timestamp mas o mysql está me dando avisos e também valores convertidos estão errados. Aqui está a consulta SQL

UPDATE table1 A, table2 B SET B.date_added=UNIX_TIMESTAMP(STR_TO_DATE(A.date_added, '%M %d %Y %h:%i%p')) WHERE A.id=B.id;

Avisos

+---------+------+--------------------------------------------------------------------------+
| Level   | Code | Message                                                                  |
+---------+------+--------------------------------------------------------------------------+
| Warning | 1411 | Incorrect datetime value: '2011-06-11 20:29:02' for function str_to_date |
+---------+------+--------------------------------------------------------------------------+

Resultado

+---------------------+---------------------+
| date_added          | date_added          |
+---------------------+---------------------+
| 2012-02-23 06:12:45 | 2012-12-23 19:08:33 |
+---------------------+---------------------+

Eu também tentei seguir a consulta, mas mostra 0000-00-00 00:00:00 no campo de registro de data e hora.

UPDATE table1 A, table2 B SET B.date_added=UNIX_TIMESTAMP(A.date_added) WHERE A.id=B.id;

questionAnswers(4)

yourAnswerToTheQuestion