Hmmm...I'm afraid that's a little over my head, but I have realized I have a bigger problem that needs fixing before I move onto that. Thanks for the help tho.
I am trying to display rows that are only less than the average of one column divided by another.
So:
SELECT COLUMN A, COLUMN B, COLUMN C / COLUMN D
FROM TABLE
WHERE (COLUMN C / COLUMN D) < AVG (COLUMN C / COLUMN D)
is what I have right now, though I realize the MIN (COLUMN C / COLUMN D) is impossible. How would you perform this type of query?
Thanks in advance.