+-----------+------+
| Name | Year |
+-----------+------+
| Nicolas | 1980 |
| Leonardo | 1988 |
| Robert | 1970 |
| Adam | NULL |
+-----------+------+
How many records will the following query return?
SELECT * FROM Actors
WHERE Year IN (1970,1988,NULL);
Login in to like
Login in to comment