Following a question posted here about how I can increase the speed on one of my SQL Search methods, I was advised to update my table to make use of Full Text Search. This i
@alexander-mera solution works great!
Note: Also make sure to convert spaces to +. For example, if you are searching for squire knight.
+
squire knight
SELECT title FROM movies WHERE to_tsvector(title) @@ to_tsquery('squire+knight:*')