Explain the use of Concat() functions. Provide an example to explain it.
Concat function is used to combine results from several different fields.
Syntax:CONCAT(str1, str2, str3, ...):
Example:SELECT CONCAT(employee_firstname,employee_lastname) FROM employee WHERE employee_salary > 1000;
Output:John Payne
Mike Turner