Introduction
I found similar discussions but none were exactly what I wanted so hopefully this isn’t a duplicate request.
I could really use the ability to store arrays in Tulip tables. Specifically I want to be able to use queries with a “contains” requirement, but instead of the current method where you can get multiple matches due to repeated characters, I want an exact match with an array element.
This would allow me to run a query + aggregation to collect all the records that apply in a very flexible manner…
Use Case
We are working on eDHR which includes managing all inspection requirements. I’m trying to minimize the maintenance burden by allowing one set of records cover a whole family of parts BUT we need to be able to allow for some variability in requirements such as, “a longer part has more features to check”. Or “some features don’t exist on some part sizes”.
My current method is to use a single text field to list the size of parts that are required for that inspection such as:
12,14,16,18,20
But this is very fragile. The choice of a ,
for a separator is meaningless for the query, it just makes it more human readable. Also a query for contains 12
would also match 120
or any other part of the string containing a 12.