Removes a column in the given table.
TableRemoveColumn(Table, Column Index)
Where:
Table is the Table from which to remove the column.
Column Index is the index of the column to remove.
Rule | Meaning |
---|---|
TableRemoveColumn(DWGroupTableCustomers, 3) | Will return an array of the Customers table with column 3 removed. |
Customers Table
CustomerName | City | Country |
---|---|---|
Amazon Warriors | Paris | France |
Bolton Burners | Concord | United States |
Boston Bulls | Hanover | Germany |
Cambridge Cats | Toulouse | France |
Dynamo Dynamics | Indianapolis | United States |
Eagle Sizzlers | Columbus | United States |
Everso Lucky | Burlington | United States |
Forty Somethings | Chicago | United States |
CustomerName | City |
---|---|
Amazon Warriors | Paris |
Bolton Burners | Concord |
Cambridge Cats | Toulouse |
Dynamo Dynamics | Indianapolis |
Eagle Sizzlers | Columbus |
Everso Lucky | Burlington |
Forty Somethings | Chicago |
DriveWorks will return the table above as an array, which will look like:
Table returned as an Array |
---|
{"CustomerName","City";"Amazon Warriors","Paris";"Bolton Burners","Concord";"Cambridge Cats","Toulouse";"Dynamo Dynamics","Indianapolis";"Eagle Sizzlers","Columbus";"Everso Lucky","Burlington";"Forty Somethings","Chicago"} |