あなたの質問は最善ではありません。私は助けようとしますが、より良い質問にはより良い答えが得られます.
テーブルを3つの別々のテーブルに保持する必要があると仮定します(個人的にはそうしません。distributor
フィールドなどを追加して、すべてを1つのテーブルに配置します)。
(あなたのPHPタグから判断すると、私はそれをphpに入れます)。
かなり具体的な例を示しますが、それがどのように機能するかを理解し、適応できるようにすることが重要です。
//Dist. A
$query = "SELECT * FROM `db`.`table_a` WHERE 1 ORDER BY `sku` DESC"; //Get the list of products
$result = mysql_query ($query) or die (mysql_error());
while ( $row = mysql_fetch_assoc($result)) {
if ( $row['stock'] != 0 ) { //If we have stock...
$query = "SELECT * FROM `final_table` WHERE `sku` LIKE '".$row['sku']."'"; //See if we have the data in the final table
$final_result = mysql_query ($query) or die (mysql_error());
if ( mysql_num_rows($final_result) == 0 ) { //Product Not in new table
$query = "INSERT INTO `final_table` VALUES ( '".$row['sku']."' [The rest of your values]";
mysql_query ($query) or die (mysql_error());
}
if ( mysql_num_rows($final_result) >= 1 ) { //Product In new table
$new_row = mysql_fetch_assoc($new_result); //Get the data into an array so we can compare the prices
if ( $row['price'] < $final_row['price'] ) { //New price is lower
$query = "UPDATE `final_table` SET `dist` = 'A', `price` = '".$row['price']."' [Other Vars that need update] WHERE `sku` LIKE '"$row['sku']"'";
mysql_query ($query) or die (mysql_error());
}
}
}
}
次に、B テーブルと C テーブルに対してこれを繰り返し、テーブル名と最終データベースに格納される値を更新します。
(その例では、おそらくいくつかの規則に違反していることに気づきましたが、概念はそこにあります。)
sku
これは、主にある種の一意のインデックスであるいくつかのことを前提としています。