programming-examples/sql/SQLMovieDatabase/11. Write a query in SQL to find the ID number for the actor whose first name is 'Woody' and the last name is 'Allen'.sql

5 lines
207 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*11. Write a query in SQL to find the ID number for the actor whose first name is 'Woody' and the last name is 'Allen'.*/
SELECT act_id
FROM actor
WHERE act_fname='Woody'
AND act_lname='Allen';