PHPとMySQLを使用しており、フィールドnumber
とを含む2つのテーブルがありますname
。table1のname
フィールドはデフォルトで空であり、table2に一致する番号の行がある場合、table1の名前を更新したいと思います。
次の擬似コードはこれを示しています。
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