This may be some sort of weird longer shortcut, and please correct me if I'm mistaken in this train of thought...
I have a matrix of data that looks like:
unique_id | url | other random data...
unique_id | url | other random data...
unique_id | url | other random data...
I want to be able to reference an item by either it's url, or it's unique_id - is there a fancy way to do this?
I suppose the cheating solution would be to just make two arrays, but I was wondering if there is a better way.
unique_id
toother random data
, then a second array that mapsurl
tounique_id
. That is the purpose ofunique_id
s: to provide a concise and efficient "handle" that represents a given record (row) of data. – ToolmakerSteve