Using the BETWEEN operator, write a query that selects all information about movies whose name begins with the letters ‘D’, ‘E’, and ‘F’?
SELECT name
FROM movies
WHERE name
BETWEEN 'D' AND 'E' AND 'F';
Why doesn’t my code work, and I posted the original question before my code. Thank you in advance for your help.