The following documentation comment has been logged on the website: Page: https://www.postgresql.org/docs/13/functions-string.html Description:
Hopefully the referrer page was kept. I'm referring to the string functions page that reads... == position ( substring text IN string text ) → integer Returns starting index of specified substring within string, or zero if it's not present. position('om' in 'Thomas') → 3 == should describe the situation where multiple occurrences of substring are in the string text... might read... Returns starting index of the first occurrence of the specified substring within string, or zero if it's not present. Troy. #