<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: Prestashop: export products without ANY module</title>
	<atom:link href="http://nemops.com/prestashop-export-products/feed/" rel="self" type="application/rss+xml" />
	<link>http://nemops.com/prestashop-export-products/</link>
	<description>Prestashop Tutorials, Modules and More!</description>
	<lastBuildDate>Fri, 10 Mar 2023 23:25:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.35</generator>
	<item>
		<title>By: aniela</title>
		<link>http://nemops.com/prestashop-export-products/comment-page-2/#comment-46621</link>
		<dc:creator><![CDATA[aniela]]></dc:creator>
		<pubDate>Sun, 17 Sep 2017 18:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=637#comment-46621</guid>
		<description><![CDATA[how can I optimize the database / optimization of each line in the database table? how can I do the surgery?]]></description>
		<content:encoded><![CDATA[<p>how can I optimize the database / optimization of each line in the database table? how can I do the surgery?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Crew Game</title>
		<link>http://nemops.com/prestashop-export-products/comment-page-2/#comment-46563</link>
		<dc:creator><![CDATA[The Crew Game]]></dc:creator>
		<pubDate>Mon, 24 Apr 2017 11:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=637#comment-46563</guid>
		<description><![CDATA[Oh man, this is awesome!]]></description>
		<content:encoded><![CDATA[<p>Oh man, this is awesome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pamela Bourque</title>
		<link>http://nemops.com/prestashop-export-products/comment-page-2/#comment-46418</link>
		<dc:creator><![CDATA[Pamela Bourque]]></dc:creator>
		<pubDate>Sat, 24 Sep 2016 01:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=637#comment-46418</guid>
		<description><![CDATA[I keep getting this error message- wth does it mean?       The &quot;*&quot; operator cannot be used in a nested query.]]></description>
		<content:encoded><![CDATA[<p>I keep getting this error message- wth does it mean?       The &#8220;*&#8221; operator cannot be used in a nested query.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vlad</title>
		<link>http://nemops.com/prestashop-export-products/comment-page-2/#comment-46229</link>
		<dc:creator><![CDATA[vlad]]></dc:creator>
		<pubDate>Sat, 09 Jan 2016 11:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=637#comment-46229</guid>
		<description><![CDATA[I&#039;m trying to end up with a file (.csv, .txt or something text) with a list of all my products with reference, features name and values and category (just for sorting). Is there any way of doing that?]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to end up with a file (.csv, .txt or something text) with a list of all my products with reference, features name and values and category (just for sorting). Is there any way of doing that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marco Guglielmelli</title>
		<link>http://nemops.com/prestashop-export-products/comment-page-2/#comment-46026</link>
		<dc:creator><![CDATA[Marco Guglielmelli]]></dc:creator>
		<pubDate>Fri, 05 Jun 2015 13:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=637#comment-46026</guid>
		<description><![CDATA[Hello I&#039;ve used this query in Prestashop 1.5.4.1 and it doesn&#039;t work: it gives a generic &quot;Error&quot; alert.

But if I use this query directly on the database in phpMyAdmin, it works!
Do you know where could be the problem?
Thanks]]></description>
		<content:encoded><![CDATA[<p>Hello I&#8217;ve used this query in Prestashop 1.5.4.1 and it doesn&#8217;t work: it gives a generic &#8220;Error&#8221; alert.</p>
<p>But if I use this query directly on the database in phpMyAdmin, it works!<br />
Do you know where could be the problem?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nicogaldo</title>
		<link>http://nemops.com/prestashop-export-products/comment-page-2/#comment-45937</link>
		<dc:creator><![CDATA[nicogaldo]]></dc:creator>
		<pubDate>Wed, 04 Mar 2015 20:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=637#comment-45937</guid>
		<description><![CDATA[Good guide. In my case I need to export the list of products in their combinations.

SELECT 
    p.id_product, 
    pa.reference,
    pl.name,  
    GROUP_CONCAT(DISTINCT(pal.name)  SEPARATOR &quot;, &quot;) as combination, 
    p.price, 
    pq.quantity 
FROM ps_product_attribute pa 
LEFT JOIN ps_product p ON (p.id_product = pa.id_product) 
LEFT JOIN ps_stock_available pq ON (p.id_product = pq.id_product AND pa.id_product_attribute = pq.id_product_attribute) 
LEFT JOIN ps_product_lang pl ON (p.id_product = pl.id_product) 
LEFT JOIN ps_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute)
LEFT JOIN ps_attribute_lang pal ON (pac.id_attribute = pal.id_attribute)
WHERE pl.id_lang = 1 
AND pal.id_lang = 1 
GROUP BY pa.reference
ORDER BY p.id_product, pac.id_attribute

Until that point I think I have controlled. There will be a way to export with Prestashop format to import the combinations of products?

I guess as you can add a &#039;,&#039; separating the combinations, you could add the text takes the format of import

This is the format that I need, I mean the final result:
http://www.ingemaronline.com/docs/csv_import/combinations_import.csv

I use Prestashop 1.6.0.13 if it serves as data]]></description>
		<content:encoded><![CDATA[<p>Good guide. In my case I need to export the list of products in their combinations.</p>
<p>SELECT<br />
    p.id_product,<br />
    pa.reference,<br />
    pl.name,<br />
    GROUP_CONCAT(DISTINCT(pal.name)  SEPARATOR &#8220;, &#8220;) as combination,<br />
    p.price,<br />
    pq.quantity<br />
FROM ps_product_attribute pa<br />
LEFT JOIN ps_product p ON (p.id_product = pa.id_product)<br />
LEFT JOIN ps_stock_available pq ON (p.id_product = pq.id_product AND pa.id_product_attribute = pq.id_product_attribute)<br />
LEFT JOIN ps_product_lang pl ON (p.id_product = pl.id_product)<br />
LEFT JOIN ps_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute)<br />
LEFT JOIN ps_attribute_lang pal ON (pac.id_attribute = pal.id_attribute)<br />
WHERE pl.id_lang = 1<br />
AND pal.id_lang = 1<br />
GROUP BY pa.reference<br />
ORDER BY p.id_product, pac.id_attribute</p>
<p>Until that point I think I have controlled. There will be a way to export with Prestashop format to import the combinations of products?</p>
<p>I guess as you can add a &#8216;,&#8217; separating the combinations, you could add the text takes the format of import</p>
<p>This is the format that I need, I mean the final result:<br />
<a href="http://www.ingemaronline.com/docs/csv_import/combinations_import.csv" rel="nofollow">http://www.ingemaronline.com/docs/csv_import/combinations_import.csv</a></p>
<p>I use Prestashop 1.6.0.13 if it serves as data</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: El Manouche</title>
		<link>http://nemops.com/prestashop-export-products/comment-page-2/#comment-45926</link>
		<dc:creator><![CDATA[El Manouche]]></dc:creator>
		<pubDate>Mon, 23 Feb 2015 16:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=637#comment-45926</guid>
		<description><![CDATA[Here is an improved version with the product image url and with the id_shop and id_lang not hardcoded.

[code language=&quot;sql&quot;]
SELECT 
    p.id_product,
    p.active,
    pl.name,
    GROUP_CONCAT(DISTINCT (cl.name)
        SEPARATOR &#039;,&#039;) as categories,
    p.price,
    p.id_tax_rules_group,
    p.wholesale_price,
    p.reference,
    p.supplier_reference,
    p.id_supplier,
    p.id_manufacturer,
    p.ean13,
    p.upc,
    p.ecotax,
    p.weight,
    p.quantity,
    pl.description_short,
    pl.description,
    pl.meta_title,
    pl.meta_keywords,
    pl.meta_description,
    pl.link_rewrite,
    pl.available_now,
    pl.available_later,
    p.available_for_order,
    p.date_add,
    p.show_price,
    concat(&#039;http://&#039;,
            ifnull(shop_domain.value, &#039;domain&#039;),
            &#039;/img/p/&#039;,
            if(CHAR_LENGTH(pi.id_image) &gt;= 5,
                concat(SUBSTRING(pi.id_image from - 5 FOR 1),
                        &#039;/&#039;),
                &#039;&#039;),
            if(CHAR_LENGTH(pi.id_image) &gt;= 4,
                concat(SUBSTRING(pi.id_image from - 4 FOR 1),
                        &#039;/&#039;),
                &#039;&#039;),
            if(CHAR_LENGTH(pi.id_image) &gt;= 3,
                concat(SUBSTRING(pi.id_image from - 3 FOR 1),
                        &#039;/&#039;),
                &#039;&#039;),
            if(CHAR_LENGTH(pi.id_image) &gt;= 2,
                concat(SUBSTRING(pi.id_image from - 2 FOR 1),
                        &#039;/&#039;),
                &#039;&#039;),
            if(CHAR_LENGTH(pi.id_image) &gt;= 1,
                concat(SUBSTRING(pi.id_image from - 1 FOR 1),
                        &#039;/&#039;),
                &#039;&#039;),
            pi.id_image,
            &#039;.jpg&#039;) as image_url,
    p.online_only,
    p.condition,
    p.id_shop_default
FROM
    ps_product p
        LEFT JOIN
    ps_product_lang pl ON (p.id_product = pl.id_product)
        LEFT JOIN
    ps_category_product cp ON (p.id_product = cp.id_product)
        LEFT JOIN
    ps_category_lang cl ON (cp.id_category = cl.id_category)
        LEFT JOIN
    ps_category c ON (cp.id_category = c.id_category)
        LEFT JOIN
    ps_product_tag pt ON (p.id_product = pt.id_product)
        LEFT JOIN
    ps_image pi ON p.id_product = pi.id_product
        LEFT JOIN
    ps_configuration shop_domain ON shop_domain.name = &#039;PS_SHOP_DOMAIN&#039;
WHERE
    pl.id_lang = (SELECT id_lang FROM ps_lang WHERE active = &#039;1&#039; ORDER BY id_lang ASC LIMIT 1)
        AND cl.id_lang = pl.id_lang
        AND p.id_shop_default = (SELECT id_shop FROM ps_shop WHERE active = &#039;1&#039; ORDER BY id_shop ASC LIMIT 1)
        AND c.id_shop_default = p.id_shop_default
GROUP BY p.id_product
[/code]]]></description>
		<content:encoded><![CDATA[<p>Here is an improved version with the product image url and with the id_shop and id_lang not hardcoded.</p>
<pre class="brush: sql; title: ; notranslate">
SELECT 
    p.id_product,
    p.active,
    pl.name,
    GROUP_CONCAT(DISTINCT (cl.name)
        SEPARATOR ',') as categories,
    p.price,
    p.id_tax_rules_group,
    p.wholesale_price,
    p.reference,
    p.supplier_reference,
    p.id_supplier,
    p.id_manufacturer,
    p.ean13,
    p.upc,
    p.ecotax,
    p.weight,
    p.quantity,
    pl.description_short,
    pl.description,
    pl.meta_title,
    pl.meta_keywords,
    pl.meta_description,
    pl.link_rewrite,
    pl.available_now,
    pl.available_later,
    p.available_for_order,
    p.date_add,
    p.show_price,
    concat('http://',
            ifnull(shop_domain.value, 'domain'),
            '/img/p/',
            if(CHAR_LENGTH(pi.id_image) &amp;gt;= 5,
                concat(SUBSTRING(pi.id_image from - 5 FOR 1),
                        '/'),
                ''),
            if(CHAR_LENGTH(pi.id_image) &amp;gt;= 4,
                concat(SUBSTRING(pi.id_image from - 4 FOR 1),
                        '/'),
                ''),
            if(CHAR_LENGTH(pi.id_image) &amp;gt;= 3,
                concat(SUBSTRING(pi.id_image from - 3 FOR 1),
                        '/'),
                ''),
            if(CHAR_LENGTH(pi.id_image) &amp;gt;= 2,
                concat(SUBSTRING(pi.id_image from - 2 FOR 1),
                        '/'),
                ''),
            if(CHAR_LENGTH(pi.id_image) &amp;gt;= 1,
                concat(SUBSTRING(pi.id_image from - 1 FOR 1),
                        '/'),
                ''),
            pi.id_image,
            '.jpg') as image_url,
    p.online_only,
    p.condition,
    p.id_shop_default
FROM
    ps_product p
        LEFT JOIN
    ps_product_lang pl ON (p.id_product = pl.id_product)
        LEFT JOIN
    ps_category_product cp ON (p.id_product = cp.id_product)
        LEFT JOIN
    ps_category_lang cl ON (cp.id_category = cl.id_category)
        LEFT JOIN
    ps_category c ON (cp.id_category = c.id_category)
        LEFT JOIN
    ps_product_tag pt ON (p.id_product = pt.id_product)
        LEFT JOIN
    ps_image pi ON p.id_product = pi.id_product
        LEFT JOIN
    ps_configuration shop_domain ON shop_domain.name = 'PS_SHOP_DOMAIN'
WHERE
    pl.id_lang = (SELECT id_lang FROM ps_lang WHERE active = '1' ORDER BY id_lang ASC LIMIT 1)
        AND cl.id_lang = pl.id_lang
        AND p.id_shop_default = (SELECT id_shop FROM ps_shop WHERE active = '1' ORDER BY id_shop ASC LIMIT 1)
        AND c.id_shop_default = p.id_shop_default
GROUP BY p.id_product
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: El Manouche</title>
		<link>http://nemops.com/prestashop-export-products/comment-page-2/#comment-45925</link>
		<dc:creator><![CDATA[El Manouche]]></dc:creator>
		<pubDate>Mon, 23 Feb 2015 16:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=637#comment-45925</guid>
		<description><![CDATA[This is maybe because your default id_lang and or id_shop is not &#039;1&#039;.

try replacing the where statement with this one:

WHERE
    pl.id_lang = (SELECT id_lang FROM ps_lang WHERE active = &#039;1&#039; ORDER BY id_lang ASC LIMIT 1)
        AND cl.id_lang = pl.id_lang
        AND p.id_shop_default = (SELECT id_shop FROM ps_shop WHERE active = &#039;1&#039; ORDER BY id_shop ASC LIMIT 1)
        AND c.id_shop_default = p.id_shop_default]]></description>
		<content:encoded><![CDATA[<p>This is maybe because your default id_lang and or id_shop is not &#8216;1&#8217;.</p>
<p>try replacing the where statement with this one:</p>
<p>WHERE<br />
    pl.id_lang = (SELECT id_lang FROM ps_lang WHERE active = &#8216;1&#8217; ORDER BY id_lang ASC LIMIT 1)<br />
        AND cl.id_lang = pl.id_lang<br />
        AND p.id_shop_default = (SELECT id_shop FROM ps_shop WHERE active = &#8216;1&#8217; ORDER BY id_shop ASC LIMIT 1)<br />
        AND c.id_shop_default = p.id_shop_default</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: El Manouche</title>
		<link>http://nemops.com/prestashop-export-products/comment-page-2/#comment-45924</link>
		<dc:creator><![CDATA[El Manouche]]></dc:creator>
		<pubDate>Mon, 23 Feb 2015 16:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=637#comment-45924</guid>
		<description><![CDATA[It&#039;s quite tricky.

The image url is formed from the domain name and the image id.

Here is the complete request:

SELECT 
    p.id_product,
    p.active,
    pl.name,
    GROUP_CONCAT(DISTINCT (cl.name)
        SEPARATOR &#039;,&#039;) as categories,
    p.price,
    p.id_tax_rules_group,
    p.wholesale_price,
    p.reference,
    p.supplier_reference,
    p.id_supplier,
    p.id_manufacturer,
    p.ean13,
    p.upc,
    p.ecotax,
    p.weight,
    p.quantity,
    pl.description_short,
    pl.description,
    pl.meta_title,
    pl.meta_keywords,
    pl.meta_description,
    pl.link_rewrite,
    pl.available_now,
    pl.available_later,
    p.available_for_order,
    p.date_add,
    p.show_price,
    concat(&#039;http://&#039;,
            ifnull(shop_domain.value, &#039;domain&#039;),
            &#039;/img/p/&#039;,
            if(CHAR_LENGTH(pi.id_image) &gt;= 5,
                concat(SUBSTRING(pi.id_image from - 5 FOR 1),
                        &#039;/&#039;),
                &#039;&#039;),
            if(CHAR_LENGTH(pi.id_image) &gt;= 4,
                concat(SUBSTRING(pi.id_image from - 4 FOR 1),
                        &#039;/&#039;),
                &#039;&#039;),
            if(CHAR_LENGTH(pi.id_image) &gt;= 3,
                concat(SUBSTRING(pi.id_image from - 3 FOR 1),
                        &#039;/&#039;),
                &#039;&#039;),
            if(CHAR_LENGTH(pi.id_image) &gt;= 2,
                concat(SUBSTRING(pi.id_image from - 2 FOR 1),
                        &#039;/&#039;),
                &#039;&#039;),
            if(CHAR_LENGTH(pi.id_image) &gt;= 1,
                concat(SUBSTRING(pi.id_image from - 1 FOR 1),
                        &#039;/&#039;),
                &#039;&#039;),
            pi.id_image,
            &#039;.jpg&#039;) as image_url,
    p.online_only,
    p.condition,
    p.id_shop_default
FROM
    ps_product p
        LEFT JOIN
    ps_product_lang pl ON (p.id_product = pl.id_product)
        LEFT JOIN
    ps_category_product cp ON (p.id_product = cp.id_product)
        LEFT JOIN
    ps_category_lang cl ON (cp.id_category = cl.id_category)
        LEFT JOIN
    ps_category c ON (cp.id_category = c.id_category)
        LEFT JOIN
    ps_product_tag pt ON (p.id_product = pt.id_product)
        LEFT JOIN
    ps_image pi ON p.id_product = pi.id_product
        LEFT JOIN
    ps_configuration shop_domain ON shop_domain.name = &#039;PS_SHOP_DOMAIN&#039;
WHERE
    pl.id_lang = (SELECT 
            id_lang
        FROM
            ps_lang
        WHERE
            active = &#039;1&#039;
        ORDER BY id_lang ASC
        LIMIT 1)
        AND cl.id_lang = pl.id_lang
        AND p.id_shop_default = (SELECT 
            id_shop
        FROM
            ps_shop
        WHERE
            active = &#039;1&#039;
        ORDER BY id_shop ASC
        LIMIT 1)
        AND c.id_shop_default = p.id_shop_default
GROUP BY p.id_product]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s quite tricky.</p>
<p>The image url is formed from the domain name and the image id.</p>
<p>Here is the complete request:</p>
<p>SELECT<br />
    p.id_product,<br />
    p.active,<br />
    pl.name,<br />
    GROUP_CONCAT(DISTINCT (cl.name)<br />
        SEPARATOR &#8216;,&#8217;) as categories,<br />
    p.price,<br />
    p.id_tax_rules_group,<br />
    p.wholesale_price,<br />
    p.reference,<br />
    p.supplier_reference,<br />
    p.id_supplier,<br />
    p.id_manufacturer,<br />
    p.ean13,<br />
    p.upc,<br />
    p.ecotax,<br />
    p.weight,<br />
    p.quantity,<br />
    pl.description_short,<br />
    pl.description,<br />
    pl.meta_title,<br />
    pl.meta_keywords,<br />
    pl.meta_description,<br />
    pl.link_rewrite,<br />
    pl.available_now,<br />
    pl.available_later,<br />
    p.available_for_order,<br />
    p.date_add,<br />
    p.show_price,<br />
    concat(&#8216;http://&#8217;,<br />
            ifnull(shop_domain.value, &#8216;domain&#8217;),<br />
            &#8216;/img/p/&#8217;,<br />
            if(CHAR_LENGTH(pi.id_image) &gt;= 5,<br />
                concat(SUBSTRING(pi.id_image from &#8211; 5 FOR 1),<br />
                        &#8216;/&#8217;),<br />
                &#8221;),<br />
            if(CHAR_LENGTH(pi.id_image) &gt;= 4,<br />
                concat(SUBSTRING(pi.id_image from &#8211; 4 FOR 1),<br />
                        &#8216;/&#8217;),<br />
                &#8221;),<br />
            if(CHAR_LENGTH(pi.id_image) &gt;= 3,<br />
                concat(SUBSTRING(pi.id_image from &#8211; 3 FOR 1),<br />
                        &#8216;/&#8217;),<br />
                &#8221;),<br />
            if(CHAR_LENGTH(pi.id_image) &gt;= 2,<br />
                concat(SUBSTRING(pi.id_image from &#8211; 2 FOR 1),<br />
                        &#8216;/&#8217;),<br />
                &#8221;),<br />
            if(CHAR_LENGTH(pi.id_image) &gt;= 1,<br />
                concat(SUBSTRING(pi.id_image from &#8211; 1 FOR 1),<br />
                        &#8216;/&#8217;),<br />
                &#8221;),<br />
            pi.id_image,<br />
            &#8216;.jpg&#8217;) as image_url,<br />
    p.online_only,<br />
    p.condition,<br />
    p.id_shop_default<br />
FROM<br />
    ps_product p<br />
        LEFT JOIN<br />
    ps_product_lang pl ON (p.id_product = pl.id_product)<br />
        LEFT JOIN<br />
    ps_category_product cp ON (p.id_product = cp.id_product)<br />
        LEFT JOIN<br />
    ps_category_lang cl ON (cp.id_category = cl.id_category)<br />
        LEFT JOIN<br />
    ps_category c ON (cp.id_category = c.id_category)<br />
        LEFT JOIN<br />
    ps_product_tag pt ON (p.id_product = pt.id_product)<br />
        LEFT JOIN<br />
    ps_image pi ON p.id_product = pi.id_product<br />
        LEFT JOIN<br />
    ps_configuration shop_domain ON shop_domain.name = &#8216;PS_SHOP_DOMAIN&#8217;<br />
WHERE<br />
    pl.id_lang = (SELECT<br />
            id_lang<br />
        FROM<br />
            ps_lang<br />
        WHERE<br />
            active = &#8216;1&#8217;<br />
        ORDER BY id_lang ASC<br />
        LIMIT 1)<br />
        AND cl.id_lang = pl.id_lang<br />
        AND p.id_shop_default = (SELECT<br />
            id_shop<br />
        FROM<br />
            ps_shop<br />
        WHERE<br />
            active = &#8216;1&#8217;<br />
        ORDER BY id_shop ASC<br />
        LIMIT 1)<br />
        AND c.id_shop_default = p.id_shop_default<br />
GROUP BY p.id_product</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AHN</title>
		<link>http://nemops.com/prestashop-export-products/comment-page-2/#comment-45781</link>
		<dc:creator><![CDATA[AHN]]></dc:creator>
		<pubDate>Mon, 27 Oct 2014 15:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://nemops.com/?p=637#comment-45781</guid>
		<description><![CDATA[I am not a SQL guy - can anybody help me to get category data as per following fields:
ID : Active : Name : Parent category : Root category : Description : Meta title : Meta Keywords : Meta description : URL rewritten : Image URL : ID/Name of shop]]></description>
		<content:encoded><![CDATA[<p>I am not a SQL guy &#8211; can anybody help me to get category data as per following fields:<br />
ID : Active : Name : Parent category : Root category : Description : Meta title : Meta Keywords : Meta description : URL rewritten : Image URL : ID/Name of shop</p>
]]></content:encoded>
	</item>
</channel>
</rss>
