slavic_pl Posted October 28, 2020 Share Posted October 28, 2020 (edited) Witam, Próbuję wyciągnąć dane odnośnie stawek podatku dla produktów w moim sklepie. Robiąc zapytanie Quote SELECT pp.`id_product`, ppl.`name`, pp.`price`, pp.`id_tax_rules_group` FROM `psqy_product` pp JOIN `psqy_product_lang` ppl ON (pp.`id_product` = ppl.`id_product`) ORDER BY `id_product` asc; Wszystko śmiga jak należy, ale jak dodaję tabelę z podatkami nic mi nie wyświetla Quote SELECT pp.`id_product`, ppl.`name`, pp.`price`, pp.`id_tax_rules_group`, ppct.`id_country`, ppct.`id_tax` FROM `psqy_product` pp JOIN `psqy_product_lang` ppl ON (pp.`id_product` = ppl.`id_product`) JOIN `psqy_product_country_tax` ppct ON (pp.`id_product` = ppct.`id_product`) ORDER BY `id_product` asc; Proszę o pomoc. Edited October 28, 2020 by slavic_pl (see edit history) Link to comment Share on other sites More sharing options...
0 rrataj Posted October 29, 2020 Share Posted October 29, 2020 11 hours ago, slavic_pl said: Witam, Próbuję wyciągnąć dane odnośnie stawek podatku dla produktów w moim sklepie. Robiąc zapytanie Wszystko śmiga jak należy, ale jak dodaję tabelę z podatkami nic mi nie wyświetla Proszę o pomoc. Jesteś pewien że tabela "psqy_product_country_tax" zawiera jakiekolwiek dane? Co dokładnie dostajesz w odpowiedzi? Błąd czy pusty wynik? Link to comment Share on other sites More sharing options...
0 slavic_pl Posted October 29, 2020 Author Share Posted October 29, 2020 pusty wynik Link to comment Share on other sites More sharing options...
0 rrataj Posted October 29, 2020 Share Posted October 29, 2020 Tabela "psqy_product_country_tax" nie zawiera tego czego szukasz. Stawkę podatku (a właściwie ID Tax, z którego potem możesz wyciągnąć stawkę podatku) w zależności od kraju musisz wyciągnąć z "psqy_tax_rule" i "psqy_tax", czyli coś na wzór: SELECT pp.`id_product`, ppl.`name`, pp.`price`, pp.`id_tax_rules_group`, pptr.`id_country`, pptr.`id_tax` FROM `psqy_product` pp JOIN `psqy_product_lang` ppl ON (pp.`id_product` = ppl.`id_product`) JOIN `psqy_tax_rule` pptr ON (pp.`id_tax_rules_group` = pptr.`id_tax_rules_group`) ORDER BY `id_product` asc; Link to comment Share on other sites More sharing options...
0 slavic_pl Posted October 29, 2020 Author Share Posted October 29, 2020 Dzięki za odpowiedź. Link to comment Share on other sites More sharing options...
Question
slavic_pl
Witam,
Próbuję wyciągnąć dane odnośnie stawek podatku dla produktów w moim sklepie.
Robiąc zapytanie
Wszystko śmiga jak należy, ale jak dodaję tabelę z podatkami nic mi nie wyświetla
Proszę o pomoc.
Edited by slavic_pl (see edit history)Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now