It is useful to be able to export lists of brands, whether you just need a quick list directly from PHPMyAdmin, or you need to pull this information into 3rd party app.
To get all the attribute values for an attribute called brands, you can run the following query
SELECT EAOV.VALUE
FROM eav_attribute EA
LEFT JOIN eav_attribute_option EAO ON EAO.ATTRIBUTE_ID = EA.ATTRIBUTE_ID
LEFT JOIN eav_attribute_option_value EAOV ON EAOV.OPTION_ID = EAO.OPTION_ID
WHERE EA.ATTRIBUTE_CODE = ‘BRANDS’
AND EAOV.STORE_ID = 0Revisions
- May 30, 2018 @ 15:07:16 [Current Revision] by Sharing Solution
- May 30, 2018 @ 15:07:16 by Sharing Solution
Revision Differences
There are no differences between the May 30, 2018 @ 15:07:16 revision and the current revision. (Maybe only post meta information was changed.)
No comments yet.