Run your query in MariaDB and answer the following question….

Run your query in MariaDB and answer the following question. Remember, after finalizing your query and before losing it, copy or type it in in the last question. (2 points). If you need to make any change in the previous question, you can also do it. What are the name of employees (First Name and Last Name) resulting from your query in the previous question? Pick all correct answers. (To test your query, write your query in a text file or in MariaDB directly. If you copy and paste your query from Canvas most likely you will get an error.)

By filling in the blanks, write a query to retrieve the name…

By filling in the blanks, write a query to retrieve the name of Mr. Wong’s dependents, ordered by their age oldest to youngest. Write and test query in MariaDB to make sure your query runs ok to double check your entries. The query should return the following information in the same order. Employee’s first name, employee’s last name, dependent’s first name, dependent’s date of birth, dependent’s relationship Select a.[Fname1], a.[Lname1], b.[Dependent_name1], b.[Bdate1], b.[Relationship1] From EMPLOYEE a,           [DEPENDENT1] b Where a.[Ssn1] = b.[Essn1] And      a.Lname = [Empl] ORDER BY [Bdate2] [ASC1] ;