10
I have a database with registration of several films, and I would like to create an SQL query that ignores the presence of capital letters, lowercase, accents and ç. For example when searching for "brave heart" I would like the query to return me the record of the movie Braveheart. However do not know how to do, currently I have used 'like' to return records that find the word typed in any position.
select * from filmes where titulo like '%Valente%'
Use as DBMS Postgresql and I’m starting studies with SQL language and relational database modeling. From now on I thank everyone for their cooperation, any help will be welcome.