EmpID FirstName LastName Email Department
E002 Brian Roy
[email protected] Finance
E003 CINDY SMITH
[email protected] IT
E004 daniel White
[email protected] Marketing
✅ 1. Create a column FullName that concatenates FirstName and LastName with a space
in between.
Hint: Use CONCATENATE or &
✅ 2. Create a column FullName Upper that shows the full name in all uppercase.
Hint: Use UPPER()
✅ 3. Create a column Email Username that extracts the part before the @ in the Email
field.
Hint: Use LEFT() and SEARCH() or MID()
✅ 4. Create a column Email Domain that extracts the part after the @ in the Email.
Hint: Use RIGHT(), SEARCH(), LEN()
✅ 5. Create a column Dept Code:
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).
Hint: Use LEN()
DiSHA Computer Institute, Ravet Branch
✅ 7. Create a column Formatted Name:
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
DiSHA Computer Institute, Ravet Branch