Scalar. Returns a range of characters from a given string.
The following example uses the MID function to select the fifth through seventh characters of the column named LastName:
INSERT INTO OutStream SELECT MID(Employees.LastName, 5, 7) FROM Employees;
If the employee's last name were "Johnson", this would return "son".