I was developing a RegEx to use in Posgresql using C# as a test. When I included the RegEx in a Postgresql query. It doesn't work.
Why doesn't this return rows that have "titulo" column of something like "Produto one", "Produto two" and etc. Forgive me if my mistake is a silly one but I am really lost, can't understand why it is not working.
select * from produto where titulo like '(?=[Produto]{6,7})P?r?o?d?u?t?o'
I've also tried.
select * from produto where titulo like '%(?=[Produto]{6,7})P?r?o?d?u?t?o%'
I've defined the "titulo" column as char(100)