If I have table A that has a column of Student Id, and I have table B that also has Student Id Column, what's the control command that to copy all values of Student Id from Table A to Table B?
Append Values in Column from Table to Table In Kusto Control Command
34 Views Asked by superninja At
2
There are 2 best solutions below
0
On
To Append values from TableA to TableB in kusto you can use .set-or-append, it will update TableB with the data present in TableA as shown in the below query:
Data Stored in TableA:

Data stored in TableB:

.set-or-append TableB <| TableA
Output:

For more information click this link.