Advertisement
Advertisement
| 08.27.2008 at 07:03AM PDT, ID: 23682022 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: |
DECLARE @SQL varchar(1000) Set @SQL = 'SELECT c.catId, c.name as catName, c.pos as catPos, d.depId, d.name as depName, d.metaKeywords as depKey, d.metaDescription as depDes, p.prodId, p.name, p.productCode, p.price, p.salePrice, p.retailPrice, p.pageName, p.description, p.description2, p.active, p.extra1, p.EXTRA2' Set @SQL = @SQL + ' FROM categories c INNER JOIN departments d on d.depId = c.depId INNER JOIN Products p on c.catid = p.catId' Set @SQL = @SQL + ' WHERE c.depId = ''#url.department#'' AND p.active = ''on''' EXEC ReturnPage @SQL, 'productCode ASC', #((url.page-1)*url.t)+1#, #url.page*url.t# |