Microsoft
Software
Hardware
Network
Question : I need assistance excluding values from a SQL query
I want the following queries to exclude any Revenue values that equal 0.00. How can I accomplish this?
Thanks in advance,
mrotor
1: 2: 3: 4: 5:
SELECT Revenue FROM Orders SELECT SUM(Revenue) FROM Orders
Answer : I need assistance excluding values from a SQL query
SELECT Revenue
FROM Orders
Where Revenue <> 0
SELECT SUM(Revenue)
FROM Orders
HAVING SUM(Revenue) <> 0
Random Solutions
Windows Server 2003 Intermittent Freezing Issues
Negate of existing String inside of RegEx
Drupal View Image Gallery
Flex Panel with icon
Use of Excel Macro in MS Access 2000
How to cleanly kill an Excel object from memory.
printer not listing properly in windows 2008 r2
Setting up MPIO for CSV on Failover clustering
Changing src in another page
How to create a self signed certificate on windows XP