I have the following query:
SELECT sum(qty) AS TotalItems FROM Sales.OrderDetails;
And this returns
+------------+
| TotalItems |
+------------+
| 51317 |
+------------+
However, I want the output to read
+------------------------------+
| TotalItems |
+------------------------------+
| Total items ordered is 51317 |
+------------------------------+
How would I do this?