When writing SQL statements, it's a good practice to always use "AS" after calling each field. This will allow for column name changes that won't break your code. For example, the following is a simple SELECT statement:
SELECT Id AS UserId, FirstName AS FirstName, LastName AS LastName FROM Users
If some of the column names change, such as the FirstName and LastName columns, my code won't break:
SELECT Id AS UserId, FirstName AS NameFirst, NameLast AS LastName FROM Users
Thanks to Jelle Druyts for this useful tip.