5 lines
207 B
SQL
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'; |