Is there a way to find a word between delimiters in Microsoft Query? For example find "this", which is the 3rd word between underscores in "what_could_this_be".
For reference, in MySQL I would have done it by SUBSTRING_INDEX(SUBSTRING_INDEX(field, ' ', 3), ' ', -1)
.