| --- |
| { |
| "title": "ARRAY_CONTAINS_ALL", |
| "language": "en" |
| } |
| --- |
| |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| |
| ## array_contains_all |
| |
| array_contains_all |
| |
| ### description |
| |
| #### Syntax |
| |
| `BOOLEAN array_contains_all(ARRAY<T> array1, ARRAY<T> array2)` |
| |
| check whether array1 contains the subarray array2, ensuring that the element order is exactly the same. The return results are as follows: |
| |
| ``` |
| 1 - array1 contains subarray array2; |
| 0 - array1 does not contain subarray array2; |
| NULL - array1 or array2 is NULL. |
| ``` |
| |
| ### example |
| |
| ``` |
| mysql [(none)]>select array_contains_all([1,2,3,4], [1,2,4]); |
| +---------------------------------------------+ |
| | array_contains_all([1, 2, 3, 4], [1, 2, 4]) | |
| +---------------------------------------------+ |
| | 0 | |
| +---------------------------------------------+ |
| 1 row in set (0.01 sec) |
| |
| mysql [(none)]>select array_contains_all([1,2,3,4], [1,2]); |
| +------------------------------------------+ |
| | array_contains_all([1, 2, 3, 4], [1, 2]) | |
| +------------------------------------------+ |
| | 1 | |
| +------------------------------------------+ |
| 1 row in set (0.01 sec) |
| |
| mysql [(none)]>select array_contains_all([1,2,3,4], []); |
| +--------------------------------------------------------------+ |
| | array_contains_all([1, 2, 3, 4], cast([] as ARRAY<TINYINT>)) | |
| +--------------------------------------------------------------+ |
| | 1 | |
| +--------------------------------------------------------------+ |
| 1 row in set (0.01 sec) |
| |
| mysql [(none)]>select array_contains_all([1,2,3,4], NULL); |
| +----------------------------------------+ |
| | array_contains_all([1, 2, 3, 4], NULL) | |
| +----------------------------------------+ |
| | NULL | |
| +----------------------------------------+ |
| 1 row in set (0.00 sec) |
| ``` |
| |
| ### keywords |
| |
| ARRAY,CONTAIN,ARRAY_CONTAINS_ALL |
| |