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