You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
It is quite handy when doing price reviews to be able to search / sort the offers by price. But since the tables are split, that is not so easy to do in Admin. Would you provide an SQL query that will accomplish this task? Examples: search for all product offers that have a wholesale price greater than $0; or display any offer that has a comparison price so anything "on sale" can be reviewed.
Offline
search for all product offers that have a wholesale price greater than $0
SELECT DISTINCT(xofferid) FROM ecom_pricemap WHERE channelid='DEFAULT' AND whlprice<=0
display any offer that has a comparison price so anything "on sale" can be reviewed
SELECT DISTINCT(xofferid) FROM ecom_pricemap WHERE channelid='DEFAULT' AND compprice<=0
Offline