Oct 06, 2022 01:33 PM
Hello,
Can I search my tables for multiple keyword entries at once?
For instance, I have a large number of members of my teachers’ union on a table that includes a bunch of info about them, organized by 1 entry per individual with all their details as fields in that entry.
I’d like to look up phone numbers for 50 people, but I only have their employee ID.
Employee ID and Phone # are both fields for each entry, but I’d prefer to copy paste the 50 ID#s into a search that calls up all the entries, than have to copy/paste one employee ID at a time.
I have been using the Search extension, but it seems to only take one keyword search value at a time.
Is there someway I can search multiple values at once?
Thanks!
Jacob
Oct 06, 2022 06:26 PM
Hmm, the three ways I can think of are:
Oct 07, 2022 11:15 AM
At scale, not without an inverted index. If scale and user convenience is required (sort’a like a Google search) you need a full text index the likes of ElasticSearch and maybe something akin to this design.
In a query, users should be able to select or specify the fields and the values where * = wildcard. It troubles me that Airtable has not tried to provide this.
field1: <value> and field2: <value*>
As @Adam_TheTimeSavingCo has demonstrated, there are all sorts of ways to create more findability, but these approaches are bound to the design of the table and typically work the underlying platform hard because every seek is physical, not virtual. If you manage to build something really useful, it will likely impact user performance at scale and it will certainly become slower as the data collection expands.