.
Splitting a Table into several tables based on the value of a column
|src_table|src_columname|
|=--------+------------=|
|Account |ID |
|Account |Name |
|Account |Owner |
|Contact |ID |
|Contact |Name |
|Contact |FirstName |
|Contact |LastName |
'---------+-------------'
I want output in two table like first Account and second Contact.
----------------|
Account |
---+-----+-------|
ID |Name |Owner |
---+-----+-------|
---------------
Contact |
---+-----+----------+----------|
ID |Name |FirstName |LastName |
---+-----+----------+----------|
I am beginer in taled. Please tell me which component i need to used for above output.