Write a SELECT statement to list students that live either in zip code 11433, 11434, or 11435 .

What will be an ideal response?

```
SELECT *
FROM student
WHERE zip IN ('11433', '11434', '11435')```

Computer Science & Information Technology

You might also like to view...

What must be done with a node that is removed from the bag?

a. Set it to nullptr b. Decrement itemCount c. Use the delete command so system can use returned memory d. return canRmoveItem

Computer Science & Information Technology

Speakers never skip from one slide to another in a presentation.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology