i have a column "id_a" and a column "id_b".
"id_a" is an integer[] type.
"id_b" is an int type.
I have to find a way to verify that there are no more values of id_a with the same id_b
For Example:
id_a {3,4,5} id_b 18
Other Examples:
ERROR:
id_a{3,4,5} id_b 18 --> because i have already the value of b with the same values of a
NO ERROR:
id_a{3,4,5} id_b 19
ANOTHER ERROR:
id_a{3} id_b 19
NO ERROR:
id_a{6} id_b 18