A selection of columns and a set of conditions that match rows of a FluidDataSet. Used to filter and search in a database of descriptors.
Read more about FluidDataSetQuery on the learn platform.
server |
The Server on which to construct this object |
Apply the query to a source FluidDataSet and write to a destination. Can be passed the same for input and output (in-place).
sourceDataSet |
Source data, or the DataSet name |
destDataSet |
Destination data, or the DataSet name |
action |
A function to execute when the server has completed running transform |
Apply the query to a source FluidDataSet and join the resulting subset at the end of the items sharing the same identifiers in a second source. Items unique to a source dataset will be ignored. To add items at the end of a dataset instead, see the 'merge' method of FluidDataSet.
source1DataSet |
Source data, or the DataSet name |
source2DataSet |
Source data, or the DataSet name |
destDataSet |
Destination data, or the DataSet name |
action |
A function to execute when the server has completed running transformJoin |
Add a column to the query
column |
Column index |
action |
A function to execute when the server has completed running addColumn |
Add a range of columns to the query
start |
First index |
count |
Number of columns |
action |
A function to execute when the server has completed running addRange |
Filter rows according to some condition.
column |
Column index |
condition |
Condition string. Possible values: "==", "!=", "<", "<=", ">", ">=" |
value |
Condition value |
action |
A function to execute when the server has completed running filter |
Add a condition to an existing filter with an "and" connector.
column |
Column index |
condition |
Condition string. Possible values: "==", "!=", "<", "<=", ">", ">=" |
value |
Condition value |
action |
A function to execute when the server has completed running and |
Add a condition to an existing filter with an "or" connector.
column |
Column index |
condition |
Condition string. Possible values: "==", "!=", "<", "<=", ">", ">=" |
value |
Condition value |
action |
A function to execute when the server has completed running or |
Resets the internal state of the model
action |
A function to execute when the server has completed running clear |
Limit the number of resulting rows.
rows |
Maximum number of rows |
action |
A function to execute when the server has completed running limit |
Joining Datasets
Audio Analysis Data