5 lines
207 B
MySQL
5 lines
207 B
MySQL
|
/*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';
|