I have a table like that:
id: 1
pattern: /test.*
id: 2
pattern: /hello-world
and this input value: /test-request
Now i want to create a query for the given input and postgres should return the row, where the pattern from the second column matches the input (a regex search but the regex is in the field to search)
Is that possible with a postgres database?