Hi, I currently have a query that will display the fullname from individual fields.
For instance, it displays:
Doe, John Jr
I would like it to display the nickname in quotes after the first name:
Doe, John "Johnny" Jr
How do I do that?
Here is my current SQL:
SELECT tblPersonal.NameL & "," & tblPersonal.NameF & " " & tblPersonal.SUFFIX AS FullName
FROM tblPersonal
ORDER BY tblPersonal.NameL;
Thanks much!
For instance, it displays:
Doe, John Jr
I would like it to display the nickname in quotes after the first name:
Doe, John "Johnny" Jr
How do I do that?
Here is my current SQL:
SELECT tblPersonal.NameL & "," & tblPersonal.NameF & " " & tblPersonal.SUFFIX AS FullName
FROM tblPersonal
ORDER BY tblPersonal.NameL;
Thanks much!