A simple example, assuming your table has fields named "FirstName" and "LastName", you could either have the query use:
SELECT [firstname] & " " & [lastname] AS FullName
FROM Contacts;
or
SELECT [lastname] & ", " & [firstname] AS FullName
FROM Contacts;
Learn from the mistakes of others. You won't live long enough to make all of them yourself.