使用PHP比较两个MySQL表之间的数据

时间:2010-01-06 17:33:38

标签: php mysql

我有两个表table1 =记录,table2 =重复。两个表在任何给定时间都包含可变数量的列,并且它们都包含完全相同的列,但table2具有额外的ID列...两个表都包含一列{{1 }}。数据来自CSV导入。如果user_id中已存在user_id,则会将其插入table1

使用table2我需要能够获取所有行并将其打印在表格中,没问题。这个部分我很难搞清楚......对于table2中打印的每一列,我需要检查数据是否匹配(基于table2){{1}中的数据并以某种方式标记它...(可能是表格单元格上的不同颜色背景)

示例:

user_id包含行:

table1

table1

user_id | user_name
-------------------
2342342 | some name

然后输出将是:

table2

关于如何使这项工作的任何想法?如果它有帮助,我正在用Codeigniter构建这个应用程序。

5 个答案:

答案 0 :(得分:4)

select b.user_id, b.user_name, b.something, b.something2,
a.user_id as a_user_id, a.user_name as a_user_name,
a.something as a_something, a.something2 as a_something2
from b left join a on a.user_id = b.user_id

然后您的脚本可以检查您要比较的所有字段,并可选择并排打印2个值。

您可以打印返回的每条记录,在不匹配的情况下,打印包含原始值的第二行以便于比较:

<style type="text/css">
tr.good td {background: #fff; color: #333;}
tr.bad td {background: #aaa; color: #fff;}
tr.compare td {background: #000; color: #fff;}
td.match {}
td.mismatch {background: #ff0000; color: #fff;}
</style>

<table>
<tr><th>user id</th><th>name</th><th>something</th><th>something2</th></tr>

<?php
  function tdClass($k, $matches) {
    return isset($matches[$k]) && !$matches[$k] ? 'mismatch' : 'match';
  }

  foreach ($rows as $r) {
    $good = true;
    $matches = array();
    foreach ($r as $k => $v) {
      $matches[$k] = isset($r["a_$k"]) && $r["a_$k"] === $v;
      if (!$matches[$k]) $good = false;
    }
    $url = "user/$row[user_id]";
?>

<tr class="<?php echo $good ? 'good' : 'bad' ?>">

<td><?php echo $row['user_id'] ?></td>

<td class="<?php echo tdClass('user_name', $matches) ?>">
  <a href="$url"><?php echo htmlentities($row['user_name']) ?></a></td>

<td class="<?php echo tdClass('something', $matches) ?>">
  <?php echo htmlentities($row['something']) ?></td>

<td class="<?php echo tdClass('something2', $matches) ?>">
  <?php echo htmlentities($row['something2']) ?></td>

</tr>

<?php if (!$good) { ?>

<tr class="compare">
<td></td>
<td><a href="$url"><?php echo htmlentities($row['a_user_name']) ?></a></td>
<td><?php echo htmlentities($row['a_something']) ?></td>
<td><?php echo htmlentities($row['a_something2']) ?></td>
</tr>

<?php } ?>

</tr>
</table>

答案 1 :(得分:4)

此查询将选择table2中的所有条目,如果名称与table1中的名称不同,is_different将为1,否则为0:

SELECT
    table2.user_name,
    IF(table2.user_name != table1.user_name, 1, 0) AS is_different
FROM
    table2
LEFT JOIN
    table1
ON
    table1.user_id = table2.user_id

修改

如果您需要比较多个列,则可以在一个查询中执行其中几个测试:

SELECT
    table2.user_name,
    table2.user_email,
    IF(table2.user_name != table1.user_name, 1, 0) AS is_name_different,
    IF(table2.user_email != table1.user_email, 1, 0) AS is_email_different
FROM
    ...

答案 2 :(得分:0)

我认为你最好使用sql查询。 例如:

SELECT
 table2.*,
CASE WHEN table2.user_name = table1.user_name THEN 'No flag' ELSE 'Flag' END CASE AS FLAG
FROM
table2
LEFT JOIN table1
ON table1.user_name = table2.user_name

答案 3 :(得分:0)

SELECT table2.user_name FROM table2 LEFT JOIN table1 ON table1.user_id = table2.user_id WHERE table1.user_name != table2.user_name

使用此简单连接。 PHP不应该为数据选择和排序而烦恼,你的RDBMS可以完成这项任务。

答案 4 :(得分:0)

我认为最好的方法是

$table1 =  mysql_query_return_array("DESCRIBE `table1`" )<br>

$table2 =  mysql_query_return_array("DESCRIBE `table2`" )<br>

if( json_encode($table1) ==  json_encode($table2)  ){
    echo "there is different";

}else{
    echo "they are same";
}