gpt4 book ai didi

mysql - WordPress SUM 自定义字段(同一帖子,不同列)

转载 作者:行者123 更新时间:2023-11-29 07:46:58 25 4
gpt4 key购买 nike

我的 SQL 有问题。我有一个自定义 post_type (client_sales) 和几个自定义字段(“销售”、“折扣”等)我有超过 9000 个帖子,每天都会有超过 100 个新帖子。

因此,我想仅使用一个 SQL 查询来跟踪“销售”和“折扣”的总额。

function get_sum_from_custom_fields($posttype , $status, $fields){
global $wpdb;

foreach ($status as $key => $val) {
$status[$key] = "p.post_status = '{$val}'";
}
$status = implode(" OR ", $status);

$fields = is_array($fields) ? $fields : array($fields);

$cols = array();
$inners = array();

foreach ($fields as $field) {

$cols[] = "SUM(c_{$field}.meta_value) AS {$field}";

$inners[] = "INNER JOIN ".$wpdb->postmeta." c_{$field}
ON c_{$field}.post_id=p.ID
AND c_{$field}.meta_key = '$field'";

}
$cols = implode(", ", $cols);
$inners = implode(" ", $inners);

$q ="SELECT
count(p.ID) AS 'count',
$cols
FROM
$wpdb->posts p
$inners
WHERE 1=1
AND p.post_type = '$posttype'
AND ($status)
AND p.post_name NOT LIKE '%revision%'
AND p.post_name NOT LIKE '%autosave%'";
echo "<pre>"; var_dump($q); echo "</pre>";
return $wpdb->get_results($q);

}

假设您像这样使用这个函数:

$posttype = 'client_sales';
$status = array(
'discount_used',
'in-progress',
'discount_in_coupon'
);
$data1 = get_sum_from_custom_fields($posttype, $status,'sale');
$data2 = get_sum_from_custom_fields($posttype, $status,'discount');
$data3 = get_sum_from_custom_fields($posttype, $status, array ('sale','discount'));

data1 和 data2 正确,而 data3 在“销售”列上返回错误。

示例:

$data1 would be: counts = 5000, c_sale = 2000
$data2 would be: counts = 5000, c_discount = 60
$data3 returns : counts = 5000, c_sale = 1376, c_discount = 60

那么为什么我在 data3 上的“c_sales”中得到差异?从 2000 年开始,另一个我不明白的数字 (1376) 是正确的吗?

对data3的查询是:

SELECT 
count(p.ID) AS 'count_client_sales',
SUM(c_montant_dachats.meta_value) AS montant_dachats, SUM(c_montant_de_remise.meta_value) AS montant_de_remise
FROM
wp_posts p
INNER JOIN wp_postmeta c_montant_dachats
ON c_montant_dachats.post_id=p.ID
AND c_montant_dachats.meta_key = 'montant_dachats' INNER JOIN wp_postmeta c_montant_de_remise
ON c_montant_de_remise.post_id=p.ID
AND c_montant_de_remise.meta_key = 'montant_de_remise'
WHERE 1=1
AND p.post_type = 'client_sales'
AND (p.post_status = 'discount_used' OR p.post_status = 'in-progress' OR p.post_status = 'discount_in_coupon')
AND p.post_name NOT LIKE '%revision%'
AND p.post_name NOT LIKE '%autosave%'

有什么想法吗?

最佳答案

您非常接近正确的解决方案(这非常好,因为正确使用 wp_postmeta 是一件很麻烦的事情)。

但是您应该在查询中使用 LEFT JOIN 而不是 INNER JOIN。使用 INNER JOIN 时,如果左侧表不匹配,则右侧表中的行将从结果集中删除。我怀疑您有一些行带有 sale postmeta 而没有 discount postmeta,反之亦然。

关于mysql - WordPress SUM 自定义字段(同一帖子,不同列),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27484842/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com