Hi,
Can anyone help? I have an array containing a variable number of codes:
(21, 23, 4, 21)
I want to take this array and deduplicate it, ie returning:
(21, 23, 4)
I am going round and round with this, with my only working solution so far being outputting the array contents to a temporary table, then reinserting them into the array. Can anyone please help point me in a better way?
Thanks,
J