Is it possible to apply a function like LookUpRows or Lookup to an array created with BuildRowSetFromString?
I have this:
SET @rowSet = BuildRowSetFromString(@ItemsString2, '|')
I'd like to know if there's a function on which I can do:
SET @var = LookupRows(@rowSet, ITEM_ID, ... )
I am trying already using a FOR loop. I want to know if there's a function that can do this.