1
I’m doing two distinct database searches that will return various data that will be entered in a list.
I need to create a single list with this data.
And the queries must concatenate with each other. The first position of the list[0] will save the first query in the database. Then I have to do another search in the bank that will return to the same list only that will be included at the end of each position of the list.
For example
the first search returned code, name, age
will be inserted in the list (code, name, age) at position 0
the second search returned last name, weight, height
will be inserted in the same list (code, name, age, surname, weight, height)
The language is java, is being done an operation to take the database data to create accounts in google. I can’t show you the tables because they’re from the company
Is there any way to do this?
Can you publish the table template ? This operation will be done directly or using some application ? If yes, which language ?
– Mayllon Baumer