UltraSmooth
Programmer
I have a table that contains a set of ranges. Is it possible in one query to create a summary of a column from another table by range? So I guess something like this
Select SUM(detail_table.f1)
FROM detail_table
GROUP BY detail_table.f2
This would be similar to a group by date range, but the column I'm grouping on is just an int column, I can't extract a common value from it.
Hope this makes sense to someone!
Select SUM(detail_table.f1)
FROM detail_table
GROUP BY detail_table.f2
This would be similar to a group by date range, but the column I'm grouping on is just an int column, I can't extract a common value from it.
Hope this makes sense to someone!