2018-04-03 19:30:39 +00:00
|
|
|
all
|
|
|
|
1 [1]
|
|
|
|
2 [2]
|
|
|
|
key, arrayJoin(arr) in (1, 1)
|
|
|
|
1 1
|
|
|
|
key, arrayJoin(arr) in ((1, 1), (2, 2))
|
|
|
|
1 1
|
|
|
|
2 2
|
|
|
|
(key, left array join arr) in (1, 1)
|
|
|
|
1
|
|
|
|
(key, left array join arr) in ((1, 1), (2, 2))
|
|
|
|
1
|
|
|
|
2
|
2018-04-04 19:36:22 +00:00
|
|
|
all
|
|
|
|
1 [1]
|
|
|
|
2 [2]
|
|
|
|
key, arrayJoin(n.x) in (1, 1)
|
|
|
|
1 1
|
|
|
|
key, arrayJoin(n.x) in ((1, 1), (2, 2))
|
|
|
|
1 1
|
|
|
|
2 2
|
|
|
|
(key, left array join n.x) in (1, 1)
|
|
|
|
1
|
|
|
|
(key, left array join n.x) in ((1, 1), (2, 2))
|
|
|
|
1
|
|
|
|
2
|
2019-04-18 18:48:04 +00:00
|
|
|
max(key) from tab_00612 where (key, left array join n.x) in (1, 1)
|
2018-04-04 19:36:22 +00:00
|
|
|
1
|
|
|
|
1
|
2019-04-18 18:48:04 +00:00
|
|
|
max(key) from tab_00612 where (key, left array join n.x) in ((1, 1), (2, 2))
|
2018-04-04 19:36:22 +00:00
|
|
|
2
|
|
|
|
2
|
2019-04-18 18:48:04 +00:00
|
|
|
max(key) from tab_00612 any left join (select key, arrayJoin(n.x) as val from tab_00612) using key where (key, val) in (1, 1)
|
2018-04-04 19:36:22 +00:00
|
|
|
1
|
2019-04-18 18:48:04 +00:00
|
|
|
max(key) from tab_00612 any left join (select key, arrayJoin(n.x) as val from tab_00612) using key where (key, val) in ((1, 1), (2, 2))
|
2018-04-04 19:36:22 +00:00
|
|
|
2
|
2018-04-04 21:02:53 +00:00
|
|
|
1
|
2020-06-30 16:43:45 +00:00
|
|
|
1
|