array_exists

SinceVersion 2.0

array_exists(lambda,array1,array2….) array_exists(array1)

description

Syntax

  1. BOOLEAN array_exists(lambda, ARRAY<T> arr1, ARRAY<T> arr2, ... )
  2. BOOLEAN array_exists(ARRAY<T> arr)

使用一个可选lambda表达式作为输入参数,对其他的输入ARRAY参数的内部数据做对应表达式计算。当计算返回非0时,返回1;否则返回0。 在lambda表达式中输入的参数为1个或多个,必须和后面的输入array列数量一致。在lambda中可以执行合法的标量函数,不支持聚合函数等。 在没有使用lambda作为参数时,array1作为计算结果。

  1. array_exists(x->x, array1);
  2. array_exists(x->(x%2 = 0), array1);
  3. array_exists(x->(abs(x)-1), array1);
  4. array_exists((x,y)->(x = y), array1, array2);
  5. array_exists(array1);

example

  1. mysql [test]>select *, array_exists(x->x>1,[1,2,3]) from array_test2 order by id;
  2. +------+-----------------+-------------------------+-----------------------------------------------+
  3. | id | c_array1 | c_array2 | array_exists([x] -> x(0) > 1, ARRAY(1, 2, 3)) |
  4. +------+-----------------+-------------------------+-----------------------------------------------+
  5. | 1 | [1, 2, 3, 4, 5] | [10, 20, -40, 80, -100] | [0, 1, 1] |
  6. | 2 | [6, 7, 8] | [10, 12, 13] | [0, 1, 1] |
  7. | 3 | [1] | [-100] | [0, 1, 1] |
  8. | 4 | NULL | NULL | [0, 1, 1] |
  9. +------+-----------------+-------------------------+-----------------------------------------------+
  10. 4 rows in set (0.02 sec)
  11. mysql [test]>select c_array1, c_array2, array_exists(x->x%2=0,[1,2,3]) from array_test2 order by id;
  12. +-----------------+-------------------------+---------------------------------------------------+
  13. | c_array1 | c_array2 | array_exists([x] -> x(0) % 2 = 0, ARRAY(1, 2, 3)) |
  14. +-----------------+-------------------------+---------------------------------------------------+
  15. | [1, 2, 3, 4, 5] | [10, 20, -40, 80, -100] | [0, 1, 0] |
  16. | [6, 7, 8] | [10, 12, 13] | [0, 1, 0] |
  17. | [1] | [-100] | [0, 1, 0] |
  18. | NULL | NULL | [0, 1, 0] |
  19. +-----------------+-------------------------+---------------------------------------------------+
  20. 4 rows in set (0.02 sec)
  21. mysql [test]>select c_array1, c_array2, array_exists(x->abs(x)-1,[1,2,3]) from array_test2 order by id;
  22. +-----------------+-------------------------+----------------------------------------------------+
  23. | c_array1 | c_array2 | array_exists([x] -> abs(x(0)) - 1, ARRAY(1, 2, 3)) |
  24. +-----------------+-------------------------+----------------------------------------------------+
  25. | [1, 2, 3, 4, 5] | [10, 20, -40, 80, -100] | [0, 1, 1, 1, 1] |
  26. | [6, 7, 8] | [10, 12, 13] | [1, 1, 1] |
  27. | [1, NULL] | [-100] | [0, NULL] |
  28. | NULL | NULL | NULL |
  29. +-----------------+-------------------------+----------------------------------------------------+
  30. 4 rows in set (0.02 sec)
  31. mysql [test]>select c_array1, c_array2, array_exists((x,y)->x>y,c_array1,c_array2) from array_test2 order by id;
  32. +-----------------+-------------------------+-------------------------------------------------------------+
  33. | c_array1 | c_array2 | array_exists([x, y] -> x(0) > y(1), `c_array1`, `c_array2`) |
  34. +-----------------+-------------------------+-------------------------------------------------------------+
  35. | [1, 2, 3, 4, 5] | [10, 20, -40, 80, -100] | [0, 0, 1, 0, 1] |
  36. | [6, 7, 8] | [10, 12, 13] | [0, 0, 0] |
  37. | [1] | [-100] | [1] |
  38. | NULL | NULL | NULL |
  39. +-----------------+-------------------------+-------------------------------------------------------------+
  40. 4 rows in set (0.02 sec)
  41. mysql [test]>select *, array_exists(c_array1) from array_test2 order by id;
  42. +------+-----------------+-------------------------+--------------------------+
  43. | id | c_array1 | c_array2 | array_exists(`c_array1`) |
  44. +------+-----------------+-------------------------+--------------------------+
  45. | 1 | [1, 2, 3, 0, 5] | [10, 20, -40, 80, -100] | [1, 1, 1, 0, 1] |
  46. | 2 | [6, 7, 8] | [10, 12, 13] | [1, 1, 1] |
  47. | 3 | [0, NULL] | [-100] | [0, NULL] |
  48. | 4 | NULL | NULL | NULL |
  49. +------+-----------------+-------------------------+--------------------------+
  50. 4 rows in set (0.02 sec)

keywords

ARRAY,ARRAY_EXISTS