Non sono sicuro del motivo per cui stai utilizzando una sottoquery in select
. Stai anche selezionando le colonne che non ti servono/non ti servono.
Questo fa quello che vuoi?
select p.user_id,
max( CASE WHEN pm.meta_key = '_billing_first_name' and p.ID = pm.post_id THEN pm.meta_value END ) as _billing_first_name,
max( CASE WHEN pm.meta_key = '_billing_last_name' and p.ID = pm.post_id THEN pm.meta_value END ) as _billing_last_name,
max( CASE WHEN pm.meta_key = '_billing_address_1' and p.ID = pm.post_id THEN pm.meta_value END ) as _billing_address_1,
group_concat(distinct oi.order_item_name separator '|' ) as order_items
from wp_posts p join
wp_postmeta pm
on p.ID = pm.post_id join
wp_woocommerce_order_items oi
on p.ID = oi.order_id
where p.post_type = 'shop_order' and
p.post_status = 'wc-completed' and
oi.order_item_name = 'Product Name'
group by p.user_id;
Ho dovuto speculare sulla provenienza di alcune colonne, perché la tua domanda non è esplicita.