Hello,
I am doing an SQL query and the result is a table with just one column, I want the results in an array and i am using a simple code as such:
Table Busqueda = Table.query("SELECT IEDBDATA.ROW_NUMBER FROM IEDBDATA WHERE [Assembly] = $1","ASDF");
Array arrayFinal;
for(int i=1;i<=Busqueda.numRows;i++){
arrayFinal.push(Busqueda[i][1]);
}
Is there a more direct or simple method than a for loop to transform the Table into an Array?