1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| select ps_customer.id_customer,
ps_customer_group.id_customer,
ps_customer_group.id_group,
ps_group.id_group,
ps_group_lang.id_group,
ps_group_reduction.id_group,
ps_group_shop.id_group,
ps_group_shop.id_shop,
ps_shop.id_shop,
ps_shop.name,
ps_shop_group.name,
ps_shop_url.id_shop
From ps_customer inner join ps_customer_group
on ps_customer.id_customer = ps_customer_group.id_customer
inner join ps_group
on ps_group.id_group = ps_customer_group.id_group
inner join ps_group_lang
on ps_group_lang.id_group = ps_customer_group.id_group
inner join ps_group_reduction
on ps_group_reduction.id_group = ps_customer_group.id_group
inner join ps_group_shop
on ps_group_shop.id_group = ps_customer_group.id_group
inner join ps_shop
on ps_shop.id_shop = ps_customer.id_shop
inner join ps_shop_group
on ps_shop_group.name = ps_shop.name
inner join ps_shop_url
on ps_shop_url.id_shop = ps_customer.id_shop |
Partager