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