mfdb_aggregate_unaggregated.RdTell mfdb functions not to aggregate this column, just return all values.
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"