My query looks like this:
SELECT o.CustomerID, null emptyColumn, o.ShipFirstName, o.ShipCountry, c.EmailAddress
FROM Orders o, Customers c
WHERE o.CustomerID = c.CustomerID
And the results are like,
1,,John,United States,john@example.com
2,,Peter,Canada,peter@example.com
But I need to change "United States" to "US" and "Canada" to "Ca". How can I do this?