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
2019-11-18 14:05:53 +01:00

5 lines
207 B
SQL

/*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';