select Values, REGEXP_COUNT(values,'|') from Products
Sample Values cell:
Product|Cash|Loan|Customer
Result of select is 27. If count any other char it works, but if I want to count the | it counts the whole string. Why, and how can I count the pipes?