mfdb_aggregate_unaggregated.Rd
Tell mfdb functions not to aggregate this column, just return all values.
Skip over rows where column is NA
Vector of SQL like expressions to check column against
Vector of SQL like expressions to check column against
SQL like expessions can use the wildcards "_" to match any character and "
An mfdb_aggregate
object that can then be used in querying functions such as
mfdb_sample_count
# All vessels with a name ending with 'e' or 'd'
mfdb_unaggregated(like = c("%e", "%d"))
#> $omitNA
#> [1] FALSE
#>
#> $like
#> [1] "%e" "%d"
#>
#> $not_like
#> NULL
#>
#> attr(,"class")
#> [1] "mfdb_unaggregated" "mfdb_aggregate"