ultrasquash Posted February 16, 2021 Share Posted February 16, 2021 Help please, I need to track all the manual entries to product attibutes, I guess the easiest way is a query, do you know the table name? Link to comment Share on other sites More sharing options...
Guest Posted February 17, 2021 Share Posted February 17, 2021 ps_ is table prefix ps_feature, ps_feature_product, ps_feature_lang, ps_feature_value, ps_feature_value_lang, ps_feature_shop Link to comment Share on other sites More sharing options...
musicmaster Posted February 17, 2021 Share Posted February 17, 2021 Something like: Select fvl.* FROM feature_value fv LEFT JOIN feature_value_lang fvl ON fv.id_feature_value=fvl.id_feature_value WHERE fv.custom=1 1 Link to comment Share on other sites More sharing options...
ultrasquash Posted February 17, 2021 Author Share Posted February 17, 2021 Thanks a lot guys, I really appreciate your support, my final query was: SELECT * FROM `g_feature_product` fp, `g_feature_value` fv, `g_feature_value_lang` fvl, `g_feature_lang` fl WHERE fp.id_feature = fv.id_feature and fp.id_feature = fl.id_feature and fvl.id_feature_value = fv.id_feature_value and fvl.id_feature_value = fp.id_feature_value and fvl.id_lang = fl.id_lang and fv.custom <> 0 and fl.id_lang = 7 /*your languaje(s)*/ order by fp.id_product 1 Link to comment Share on other sites More sharing options...
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