Hi,
Currently my SQL statement is the following
SELECT NAME, ROUND([DR# BASE]/DAYS_WORKED,0) AS 'BASE/DAY'
FROM MYTABLE
And the output data looks like the following
NAME BASE/DAY
James 300
Jane 310
Jim 313
John 325
Jonah 400
Is there a SQL statement to make the Output look like the following?
NAME BUCKET BASE/DAY
James 300 <= 325 300
Jane 300 <= 325 310
Jim 300 <= 325 313
John 300 <= 325 325
Johnny 325 <= 350 329
Jonah 350 <= 400 400