Jump to content

How to export special (reduction) price with SQL Manager?


Recommended Posts

Hello,

I add a SQL query:

SELECT p.on_sale AS 'On Sale', m.name AS 'Manufacturer', pl.name AS 'Name', cl.name AS 'Categories', ROUND (p.price,0) AS 'Price'

but I don't know how to export the real price.

 

If I have product AAA with price $100 and special price $90, In the above example I see only $100. How to grab $90 (the real price)?

 

Thanks

Link to comment
Share on other sites

wtihout php coding it will be hard to get specifi price, it's because in special price table there is no price, just information about what kind of discount you defined. so to get final price, you have to do some math on variables from database

Link to comment
Share on other sites

×
×
  • Create New...