Reputation: 2350
I am making a Table in HTSQL, which results like:
Name Total_Calls Successful_Calls Failed_Calls
John 9 5 4
Where as I want to merge the headers like:
C A L L S
Name Total Successful Failed
John 9 5 4
Upvotes: 1
Views: 76
Reputation: 997
You could use :as to rename a column (total_calls to total) and then use brackets to mark your nested record. Here is an example:
Upvotes: 1