Hi Again -

I need some more help with a query. I have a list of numbers (bandwidth
required)... 2200, 2200, 2200, 400, 320

My data looks like this:

Bandwidth | Distance
--------------------
2250      | 10km
1125      | 10km
622       | 10km
2250      | 20km
1125      | 20km
622       | 20km
2250      | 40km
1125      | 40km
622       | 40km

I need the query to look at the list of numbers,  and figure out that a
certain distance has Bandwidths that are greater than each of the numbers.

SELECT DISTINCT(distance) FROM fiber_config WHERE fiber_type = 2 AND
bandwidth > (2200, 2200, 2200, 220) ORDER BY distance ASC

So I hope you can see what I am trying to get after. Basically I need to
fins a distance that can fit each of the numbers in the list. So if 2200 is
in the list, 2250 works. If 400 is in the list, 622 works. Thanks for the
help on this!



Thanks,

Matt Babineau
Criticalcode
858.733.0160
[EMAIL PROTECTED]
http://www.criticalcode.com
 


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to