Assignment 2
Assignment 2
✅ 1. Create a column FullName that concatenates FirstName and LastName with a space
in between.
✅ 2. Create a column FullName Upper that shows the full name in all uppercase.
✅ 3. Create a column Email Username that extracts the part before the @ in the Email
field.
✅ 4. Create a column Email Domain that extracts the part after the @ in the Email.
Show the first 3 letters of the Department field in uppercase. Hint: Combine
LEFT() and UPPER()
✅ 6. Create a column Name Length that shows the total number of characters in
FullName (including space).
Format the name as "LastName, FirstName" in title case (capitalize the first letter
of each name). Hint: Use CONCATENATE or & + UPPER/LOWER logic or custom
formatting