Final answer:
The correct SQL command to find movies with 'star' in the title is 'SELECT * FROM movies WHERE title LIKE '%star%';', where LIKE is used for pattern matching and the percent signs (%) represent wildcard characters.
Step-by-step explanation:
The correct SQL statement to select movies with the word 'star' somewhere in the title is:
SELECT * FROM movies WHERE title LIKE '%star%'
Option A is correct because the LIKE clause is used in SQL for pattern matching. The percent signs (%) represent wildcard characters that substitute for zero or more characters. This allows the SQL query to match any titles that contain the word 'star' anywhere in the title, regardless of what comes before or after it. Option B is incorrect because it searches for a title that equals 'star' exactly. Option C contains a pseudo-function 'CONTAINS', which is not standard SQL syntax. Option D is incorrect because 'BEGINS WITH' is also not a standard SQL operator and would not find titles with 'star' somewhere other than the beginning.