This is database structure : http://sqlzoo.net/movie.htm I need query for this problem "List all of the Star Trek movies, include the id title and yr. (All of these movies include the words Star Trek in the title.)" thanks
I think query should be like this "SELECT id , title , yr from movie WHERE title like = 'Star Trek%'"