I have a table.
this table has usage period of user.
example is follow
|user_id|start_at |end_at |
|1 |2014/11/02|2014/11/05|
|2 |2014/11/03|2014/11/07|
|3 |2014/11/08|2014/11/09|
I would like to get maximum concurrent number of users
above case,
Between 2014/11/03 ~ 2014/05, 2 user used.
I would like to get this "2".
Is there an easy way to set this up? What do you recommend?