Setup: seatable cloud
Describe the Problem/Error/Question:
Hello and thank you for any help with the following. I am trying to filter some rows in a table based on the row_id. Through code I can ge the row_id but I haven’t been able to use it successfully in a WHERE clause.
I have a Table (Pedidos) which has a linked column name clientes. I want to get all rows where cliente equals a row_id = ‘123’.
I have tried WHERE cliente LIKE , WHERE cliente HAS ANY OF and keep getting empty object as a response.
Instead, if I input the value for the display_value (say Siraj), then I get the response I need. However, this isn’t a prefer solution since different clients could have the same name.
My question: linked columns are stored in the form of [{“row_id”: “123”, “display_value”: “abc”}], does seatable SQL engine only look into the display_value and can’t perform searches on the “row_id”?