Need MySQL commands for the following:
-
Create a query to demonstrate use of the EXISTS keyword. Listall the actors (ID, First Name, Last Name) from the actors tablewhose actor ID exists in the film_actor table. Only list those thathave a film ID greater than 400. You must construct your statementlike it was demonstrated to you in the tutorial for Chapter 18.
-
Create a query to demonstrate the use of NOT IN. List allcolumns from the category table where the name equals Comedy andname is not in Drama or Action.
-
Create a query to demonstrate the use of NOT IN and AND. Listall columns
OROR