How would I format the following do that line 5
,SalesLT.Product.ListPrice - SalesLT.Product.StandardCost AS Profit
Is formatted with an £ sign?
The code is
SELECT SalesLT.Product.Name
,SalesLT.Product.Color
,SalesLT.Product.StandardCost
,SalesLT.Product.ListPrice
,SalesLT.Product.ListPrice - SalesLT.Product.StandardCost AS Profit
,SalesLT.ProductModel.Name AS SubCatNameType
,SalesLT.Product.ListPrice
,SalesLT.Product.Name AS SubCatName
FROM SalesLT.Product INNER JOIN
SalesLT.ProductModel ON SalesLT.ProductModel.ProductModelID = SalesLT.ProductModel.ProductModelID
Many thanks