Please, see the table below:
| text_id | text_title | topics_weights |
| ------- | ---------------| --------------------------|
| 112233 | Greetings | {"(123,0.9)", "(456,0.8)"}|
| 112234 | Congratulations| {"(789,0.8)", "(101,0.5)"}|
| 112235 | Salutations | {"(123,0.8)", "(102,0.8)"}|
My question is how do I get all the rows from this table if I want to get all the text_ids that contain 123 in the topics_weights column? The data type in the topics_weights column looks complex, and I am not sure how to create the condition.
I will appreciate your help! Thank you!