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') %}