问题可能有所不同,例如:在特定指标上比较mySQL中的两个表。我的表有维度(日期)和度量(数字),我想检查我是否在同一日期获得相同的数字。
作为一种解决方案,我开始创建一个PHP脚本,其中表格内容将被放入数组中。然后我比较这些数组来追踪差异。
如果同一日期的两个表中的数字不相同,我将打印“表1中的日期,数字 - 表2中的数字”。
这是我的代码,但似乎我遇到了array_diff的问题:
// Connect to the database (mySQL)
$Db = mysqli_init();
$Db->options(MYSQLI_OPT_LOCAL_INFILE, true);
$Db->real_connect($servername, $username, $password, $dbname, 3306);
// Creation of 1st Array
$result_one = array();
// Creation of 1st SQL query
$sql = "select date, sum(number) from Table1 group by date";
// Run the 1st query
$query = $Db->query($sql);
// Save the results of the 1st query in the 1st array called result_one
$i = 0;
while ($row = $query->fetch_assoc())
{
echo "aaa";
$result_one[$i] = $row;
$i++;
}
// Print the results (array)
print_r ($result_one);
#####################################################
// Creation of 2nd Array
$result_two = array();
// Creation of 1st SQL query
$sql = "select date, sum(number) from Table2 group by date";
// Run the 1st query
$query = $Db->query($sql);
// Save the results of the 1st query in the 1st array called result_two
$i = 0;
while ($row = $query->fetch_assoc())
{
echo "aaa";
$result_two[$i] = $row;
$i++;
}
// Print the result_two (array)
print_r ($result_two);
#####################################################
// Use of array_diff
$diff = array_diff($result_one,$result_two);
// Print the differences
print_r($diff);
我收到的错误如下:
PHP堆栈跟踪:...数组到字符串转换
表格有两个维度
答案 0 :(得分:2)
您可以使用单个SQL查询执行此操作:
$sql = "SELECT t1.date, t1.number as `t1num`,
t2.number as `t2num`
FROM `table1` t1, `table2` t2
WHERE t1.date = t2.date AND t1.number != t2.number"
$query = $Db->query($sql);
while ($row = $query->fetch_assoc())
{
echo sprintf("mismatch: date: %s, table1: %s, table2: %s", $row['date'], $row['t1num'], $row['t2num']);
}
答案 1 :(得分:0)
函数array_diff只检查1维数组,这来自php手册
此函数仅检查n维数组的一维。当然,您可以使用array_diff($ array1 [0],$ array2 [0]);来检查更深的维度。
通过此link
你可以迭代数组并比较每个1维数组。
this可以帮助您
答案 2 :(得分:0)
array_diff
功能很好,我认为问题出在$result_one
和$result_two
。打印它们以查看其中的内容。