I have a query on my database that returns the following info in an array:
1234-mike, 64
1235-mike, 44
1236-jim, 55
1237-jane, 56
What I need is to delete the first 5 characters from the first element in each row of the array (get rid of "1234-" and be left with mike, 64).
I can't find any function that works on arrays that will do this? Can anyone point me in the right direction?