
Day 10 of the @hertechtrail #HTTDataChallenge was to retrieve customer names in alphabetical order using SQL query.
SELECT name (retrieves only the name column)
FROM accounts (your customer names are in the accounts table)
ORDER BY & ASC (sorts in ascending order )
#SQLQuery

English


























