User need to be able to search for data using Wildcard or similar
I have a text field
and a search button that triggers my query "Get_users" Note: button is disabled when {{textInput1.values.length<3}}
query Get_users:
SELECT *
FROM db1.table_user USR
WHERE USR.fullname LIKE '%'{{textInput1.values}}'%'
LIMIT 100
Results is showing in a table
Search for "Thore" give 1 result as expected
Search for "Th%re" gives 0 result, but 1 result was expected
Search for "t%e" gives 0 result, but 1 result was expected
Need help with allowing wildcards within the value. so users can search for all possible results.