php mysql datetime

0 Cevap php

I have two tables in MySQL, and each table has its own datetime field. I want to copy the datetime of table A to overwrite the datetime of table B. I use PHP.

$result = mysql_query("select * 
                         from A 
                        where id = $key");
$row = mysql_fetch_array($result);
print $row[2]."\n"; // $row[2] is the datetime field
mysql_query("update B 
                set date_cal = $row[2]  
              where id = $key") // try to overwrite datetime in table B

$ Row [2] datetime alanın dize temsilini sahiptir.

Ama yazma işlemi etkili olmaz. Php kullanarak tablo B datetime alan üzerine yazmak için yapmak nasıl?

Ben $ satırını kullanarak ısrar ederse [2] nasıl, yerine yine mysql_query çalışan yeni datetime alanı atamak için?

0 Cevap