SELECT statement that returns one column from the Customers table named Filename that Joins the Lasted and Firestone columns. Format this column with the last name, a comma, a space, and the first name like this: a. Doe, John select lasted + ' + Firestone as Filename from customers; Sort the result set by last name in ascending sequence. Select lasted + ' + Firestone as Filename from customers order by lasted; Return only the contacts whose last name begins with letters from M to Z select lasted + ' + Firestone as Filename from customers where lasted >= 'M order by lasted ; 3.

Question 3.Write a SELECT statement that returns these column names and data from the Products table: Productions The Productions column Electrics The Electrics column Deadheaded The Deadheaded column Query to Retrieve above step with result in screenings 1 select productions,electrics,deadheaded from products; Screenings 1 Return only the rows with a list price that's greater than 500 and less than 2000. Query to Retrieve above step with result in screenings 2 select productions,electrics,deadheaded from products where electrics > 500 and electrics < 2000; Screenshot 2 Sort the result set in descending sequence by the DateAdded column.