Filter Multiple values in a Hubdb column

I have a text column with an id (not unique) as a value. I want to get all rows with multiple IDs
Neither of these are working. TIA

{% for row in hubdb_table_rows(5555555,'limit=9999&dso_id__eq=2cdb4850-33ab-4eaa-a003-97d202b05733&dso_id__eq=e5bc6db0-afc2-4b3d-8260-1a4ab0b365a7') %}

{% for row in hubdb_table_rows(5555555,'limit=9999&dso_id__in=2cdb4850-33ab-4eaa-a003-97d202b05733,e5bc6db0-afc2-4b3d-8260-1a4ab0b365a7') %}

{% for row in hubdb_table_rows(5555555,'limit=9999&dso_id__contains=2cdb4850-33ab-4eaa-a003-97d202b05733,e5bc6db0-afc2-4b3d-8260-1a4ab0b365a7') %}

Hi, @Anonymous :waving_hand: Thanks for including your code examples. For the second example, can you try it like this? Even if it doesn’t work as expected, it may get us a step closer:

{% for row in hubdb_table_rows(5555555,'limit=9999&dso_id__in=(2cdb4850-33ab-4eaa-a003-97d202b05733,e5bc6db0-afc2-4b3d-8260-1a4ab0b365a7)') %}

I added another set of parenthesis after your `in` operator.

Hey, @Indra @Josh @jonchim, do you have any additional troubleshooting tips or suggestions for @Anonymous?

Thank you! — Jaycee