我想避免在代码中使用distinct()。我需要一些帮助,以便创建一个表,该表将保留从db表看门狗获取的值并检查是否已获取下一个值。如果下一个值在表中,则该值将不会插入表中...我需要一个真正的帮助,因为如果我解决此问题,我将结束我的模块。
// Begin building the query.
$query = db_select('watchdog', 'th')
->extend('PagerDefault')
->orderBy('wid')
->distinct()
->fields('th', array('variables', 'type', 'severity', 'message', 'wid'))
->limit(2000);
// Fetch the result set.
$result = $query -> execute();
// Loop through each item and add to $row.
foreach ($result as $row) {
blablablabla($row);
}
}
我想要变量列的不同值。我不想要主题表,我只想要带有一些值的表。
最佳答案
在循环之前制作一些空数组。在循环内部检查其中是否存在唯一值。如果确实如此,则跳过该循环迭代(继续)。如果它没有将其存储在数组中并执行blablabal();
// query without distingc
// print_r($results); print out array of results to see what field to take as unique
$already_processed = array();
foreach ($result as $row) {
$unique_value = $row['some_unique_field'];
if (in_array($unique_value, $already_processed)) continue;
$already_processed[] = $unique_value;
blablabla($row);
}
这样的东西。
关于mysql - 我如何避免看门狗的distinct()?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28940052/