Created
April 14, 2015 02:16
-
-
Save litan1106/2c09ae1b8a04912de901 to your computer and use it in GitHub Desktop.
sql:prestashop-product
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT p.id_product AS 'ID', | |
p.active AS 'Active (0/1)', | |
pl.name AS 'Name', | |
p.id_category_default AS 'Default Category', | |
p.price AS 'Price tax excl.', | |
p.quantity AS 'Quantity', | |
pl.description_short AS 'Short description', | |
pl.description AS 'Description', | |
pl.link_rewrite AS 'URL rewritten', | |
p.available_for_order AS 'Available for order', | |
p.date_add AS 'Product creation date', | |
p.show_price AS 'Show price', | |
p.online_only AS 'Available online only', | |
p.condition AS 'Condition' | |
FROM ps_product p INNER JOIN | |
ps_product_lang pl ON p.id_product = pl.id_product |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment