Returns a query containing a subset of another query
querySlice(query, offset [, length])
returns query
query.slice(offset [, length])
Name | Type | Required | Default | Description |
---|---|---|---|---|
query | query | Yes | ||
offset | numeric | Yes | The first row to include in the new query | |
length | numeric | No | The number of rows to include in the new query, defaults to all remaining rows |
data = [
[ 1,'James' ],
[ 2,'Alfred' ],
[ 3,'Amisha' ],
[ 4,'Terri' ]
];
myQuery = QueryNew( 'ID,name','integer,varchar',data );
result = QuerySlice( myQuery,2,2 );
writeDump( var='#result#' );
data = [
[ 1,'James' ],
[ 2,'Alfred' ],
[ 3,'Amisha' ],
[ 4,'Terri' ]
];
myQuery = QueryNew( 'ID,name','integer,varchar',data );
result = myQuery.slice( 2,2 );
writeDump( var='#result#' );