COMPUTER SCIENCE AND ENGINEERING
SQL
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
Write the code for the following:Return all movies containing the word iron.
|
SELECT * FROM i am a beast 1, 2, 3 WHERE name LIKE ‘%iron%’;
|
|
SELECT * FROM movies WHERE name LIKE ‘%iron%’
|
|
SELECT * FROM movies WHERE name LIKE ‘%iron%’;
|
|
SELECT FROM movies WHERE name LIKE ‘%iron%’;
|
Explanation:
There is 1 question to complete.