vote up 6 vote down star
2

Hello,

I was working for a telecom company some years ago and I had to generate a formula which calculates duration of a call according to the following algorithm:

  • t1 is the first period
  • t2 is the recurring period
  • RCT is the actual call time (in seconds)
  • CD is the effective call duration (for billing purposes)

if RCT is less than t1, then the CD equals t1
if RCT is greater than t1, then CD = t1 + x*t2, where x will "round" RCT to the next highest multiple of t2.

This algorithm translates to: "Charge for the first t1 seconds, then charge every t2 seconds after that".

Example:

t1	t2	RCT	CD	
60	10	48	60
60	10	65	70
60	10	121	130
30	20	25	30
30	20	35	50
30	20	65	70

Can you create a function / SQL that will return the "call duration" CD?

Without using if then else ...?

flag

4 Answers

vote up 2 vote down

EDIT: simplified further, and fixed < vs <= error.

No floating point and worked on every database I have access to:

create table calls (t1 int, t2 int, rct int, cd int)

insert into calls (t1, t2, rct, cd) 
values (60, 10, 48, 60)

insert into calls (t1, t2, rct, cd) 
values (60, 10, 65, 70)

insert into calls  (t1, t2, rct, cd)
values (60, 10, 121, 130)

insert into calls  (t1, t2, rct, cd)
values (30, 20, 25, 30)

insert into calls  (t1, t2, rct, cd)
values (30, 20, 35, 50)

insert into calls  (t1, t2, rct, cd)
values (30, 20, 65, 70)

--Additional test to show that it works
insert into calls  (t1, t2, rct, cd)
values (60, 10, 70, 70)

select t1, t2, rct, cd, 
t1 + case when rct <= t1 
  then 0 
  else ( (rct-1-t1) / t2 + 1) * t2 end as CalceCD
from calls

Result:

t1          t2          rct         cd          CalceCD
----------- ----------- ----------- ----------- -----------
60          10          48          60          60
60          10          65          70          70
60          10          121         130         130
30          20          25          30          30
30          20          35          50          50
30          20          65          70          70
60          10          70          70          70

(6 row(s) affected)

You would be free to create the function as a UDF or whatever your SQL environment allows to clean up the select.

Edit: yes, floor and an offset of one avoids floating math.

link|flag
Shouldn't that be ceiling((rct-t1)/t2) instead of (floor((rct-t1)/t2)+1)? Otherwise, 60-10-70 would produce a CD of 80. – Ben Blank Jan 30 at 22:21
insert into calls values (60, 10, 70, 70) insert into calls values (60, 10, 80, 80) These don't work – Cade Roux Jan 30 at 22:26
Those inserts assume a syntax that can imply the format of the table. Add the (t1, t2, rct, cd) if needed. – Godeke Jan 30 at 23:29
The use of floor with some "off by one" de-increments and re-increments avoids floating math and should work anywhere. There error was the missing -1 in the rct-1-t1. – Godeke Jan 30 at 23:30
Very clever little shift there, and now you can take out floor and it's just as good! (for certain values, I imagine it must be incorrect - I'll have to find the values of rct, t1 and t2 for which it fails.) – Cade Roux Jan 31 at 1:18
show 4 more comments
vote up 2 vote down

Assuming int columns:

SELECT t1
    ,t2
    ,RCT
    CASE
    WHEN RCT < t1
        THEN t1 
    ELSE
        t1 + t2 * ((RCT - t1) / t2 + SIGN((RCT - t1) % t2))
    END AS CD

But I guess there is still one CASE, let me see if I can get rid of it.

With only integer arithmetic (still not ANSI):

SELECT  t1
       ,t2
       ,RCT
       ,CD
       ,t1 + SIGN(RCT / t1) * t2 * ((RCT - t1) / t2 + SIGN((RCT - t1) % t2)) AS CalcCD
FROM    Calls
link|flag
Beautiful solution! +1 – eJames Jan 30 at 22:58
Thanks, it's still messier than I think it can be. With conversion to float it's cleaner, but I bet measurably slower for BIG queries (like phone calls!). – Cade Roux Jan 30 at 23:01
Ah well. No need for premature optimization :) If the OP ends up needing it to compute ten billion entries in less than a second, he'll have to post another question on how to improve the efficiency! – eJames Jan 30 at 23:10
vote up 2 vote down

I would use:

t1 + t2*ceiling( (rct - t1 + abs(rct - t1))*1.00/(2*t2) )

Or:

t1 + t2*ceiling( Cast((rct - t1 + abs(rct - t1)) as float)/(2*t2) )
link|flag
You're missing an opening parenthesis. – Cade Roux Jan 30 at 22:41
Thank you, I just noticed :) – eJames Jan 30 at 22:41
I tried putting one in in a few places but I'm not getting results that match. – Cade Roux Jan 30 at 22:42
I'm not sure if the *1.00 helps with the integer column problem. Can someone verify this for me? – eJames Jan 30 at 22:43
Yes - the 1.00 forces the conversion, nice. – Cade Roux Jan 30 at 22:45
show 2 more comments
vote up 0 vote down

I'm very sorry; I've deleted my answer, which I now realise was complete BS. MAX is a row aggregating operator.

link|flag
It's too bad that MAX couldn't be used that way. You were the first to post the working algorithm that the rest of us have expanded upon. – eJames Feb 1 at 0:19
@eJames: Thank you for your courtesy, but BS in our profession is inexcusable; a luxury we should leave to the Suits. I am still hanging my head in shame. – Brent.Longborough Feb 1 at 21:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.