Hi
I have the following sample JSON where i want to split it and copy to 2 different datatables like
ID,Name & Description to one table and Distrubutors data to another table
Kindly help me with this
[
{
"Id":"123",
"Name":"abc",
"Description":"abc company",
"Distributors":[
{
"DName":"joe",
"LastName":"BIDEN",
"Email":"jb@email.com"
},
{
"DName":"Donald",
"LastName":"TRUMP",
"Email":"dt@email.com"
}
]
}
]