Advertisement
Advertisement
| 09.22.2008 at 10:04AM PDT, ID: 23752107 |
|
[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: 6: 7: 8: 9: 10: 11: 12: 13: |
(SELECT Client_Inv.ItemID, Client_Inv.ItemName, Client_Inv.Location, count(*) AS count, SUM(IF(Client_Inv.ItemID = Inventory.ItemID AND OnOrder= '1', 1, 0)) AS Acount FROM Client_Inv LEFT JOIN Inventory ON Client_Inv.ItemID = Inventory.ItemID WHERE Client_Inv.Client_ID = '$q' AND Client_Inv.Discod = '0000-00-00' AND Inventory.RemDate = '0000-00-00' AND Inventory.Discod = '0' GROUP BY ItemID) UNION (SELECT Client_Inv.ItemID, Client_Inv.ItemName, Client_Inv.Location, count(NULL) AS num, SUM(IF(Client_Inv.ItemID = Inventory.ItemID AND OnOrder= '0', 0, 0)) AS numb FROM Client_Inv, Inventory WHERE Client_Inv.Client_ID = '$q' AND Client_Inv.Discod = '0000-00-00' AND Client_Inv.ItemID NOT IN (SELECT DISTINCT ItemID FROM Inventory WHERE Inventory.RemDate = '0000-00-00') GROUP BY ItemID) Order By ItemName |