我正在使用 PHP 和 MySQL,我有 2 个包含字段number
和name
. 表 1 中的name
字段默认为空,表 2 中有一行匹配的数字我想更新表 1 中的名称。
下面的伪代码说明了这一点:
select number, number
from table1, table2
if number from table1 == number from table2
then insert or update name from table1 with the value of name from table2