QueryDeletecolumn()

Deletes the column from the query, returning the deleted column data as an array

Usage

ARRAY = QueryDeletecolumn( query, column )
Argument Summary
query query
column column name

Calling

Supports named-parameter calling allowing you to use the function like:

QueryDeletecolumn(
   query=?, 
   column=?
);

Supports passing parameters as a structure using ArgumentCollection:

QueryDeletecolumn( ArgumentCollection={
   query : ?, 
   column : ?
} );