There are two arrays in my table, say, array1
and array2
.
One row , for example, array1 = [1,2,3,4]
and array2 = [2,4,9]
I want to get the elements that both array1
and array2
have, that is [2,4]
.
How can I realize it ?
There are two arrays in my table, say, array1
and array2
.
One row , for example, array1 = [1,2,3,4]
and array2 = [2,4,9]
I want to get the elements that both array1
and array2
have, that is [2,4]
.
How can I realize it ?