How can I query merge rows which has same dates and get rid of null
Date | Long | Short
2006-07-06 | t1 |
2006-07-06 | | t2
2006-07-05 | t1 |
2006-07-05 | | t2
2006-07-04 | t1 |
2006-07-04 | | t2
2006-07-03 | t1 |
2006-07-03 | | t2
to this
Date | Long | Short
2006-07-06 | t1 | t2
2006-07-05 | t1 | t2
2006-07-04 | t1 | t2
2006-07-03 | t1 | t2