Write a mysql statement to find the concatenated first_name, last_name where age of the employee is greater than 30
Suppose the employee table is -
 
+------------------------+------------------------------+----------+----------+
| first_name             | last_name                    | age      | dept     |
+------------------------+------------------------------+----------+----------+
| Mesa                   | Loop                         |  30      |  Acct    |
| Smith                  | Oak                          |  27      |  Devl    | 
| John                   | Jorz                         |  37      |  QA      | 
| Hary                   | Gaga                         |  32      |  QA      | 
+------------------------+------------------------------+----------+----------+
                                                                     
                            
Solution
The following statement returns the concatenated first_name, last_name of the employees whose age is greater than 30.
Output of the above code -
need an explanation for this answer? contact us directly to get an explanation for this answer