Hello mates,
When I used the following query It unable to fetch the exact result even though data existed.
{"query": {"query_string": {"query": "column1:(1.3 \"@\")"}}}
This query is fetching results that are only having '1.3'.
Whereas in the following case it's working fine. It can able to fetch the rows that are having both '@' and '1.3'
{"query": {"query_string": {"query": "\"@\"1.3"}}}
But, I wanna use column names in a query. So, Can anyone help me to create a query with special characters and column names?
Thanks in advance.