Member since
10-11-2024
5
Posts
4
Kudos Received
0
Solutions
11-05-2024
01:43 AM
1 Kudo
@Boris G it doesn’t help
... View more
10-15-2024
11:09 PM
1 Kudo
I wouldn’t like to get records with „or” operator, it will return more records than i really would like to take
... View more
10-15-2024
06:29 AM
Yes, if I add just one Key and value into where clause query work correctly and return correct sets of data
... View more
10-13-2024
11:24 PM
1 Kudo
Yes I saw the documentation, but i didn’t find solution there. In documentation you usually add just one map field and value into where clause
... View more
10-11-2024
05:04 AM
1 Kudo
I am having a table id | result
Int | map<string, string>
Id | result
1 | {”street”:”abc”, ”phone”:”123”}
2 | {”country”:”def”, ”phone”:”456”}
3 | {”street”:”abc”, ”zipCode”:”726”}
4 | {”street”:”abc”, ”phone”:”123”}
5 | {”street”:”fgh”, ”phone”:”123”} I would like to get records with street=abc and phone=123 I wrote the query like below: select id, r
from table, table.result r
where r.key=’street’ and r.value=’abc’
and r.key=’phone’ and r.value=’123’ The result is empty
... View more
Labels:
- Labels:
-
Apache Impala