DEBUG MODE - FILM TITLES SEARCH
Search query: 'only those with empty pockets can sing to the thiefs face'
Database connected: YES
SQL:
SELECT id, title, original_title, year, poster_url,
CASE
WHEN title LIKE '%only those with empty pockets can sing to the thiefs face%' THEN 1
WHEN original_title LIKE '%only those with empty pockets can sing to the thiefs face%' THEN 2
ELSE 3
END as relevance
FROM films
WHERE title LIKE '%only those with empty pockets can sing to the thiefs face%' OR original_title LIKE '%only those with empty pockets can sing to the thiefs face%'
ORDER BY relevance ASC, year DESC
LIMIT 20
Search term: %only those with empty pockets can sing to the thiefs face%
Results found: 0
Search Titles: only those with empty pockets can sing to the thiefs face - Short Movie Database
No films found matching "only those with empty pockets can sing to the thiefs face"
Try checking your spelling or using different keywords.