G
Guest
I'm running thisquery to concatenate last and first names into one field.
How can I get the blanks out after last name? Thanks for any ideas.
SELECT [pt_last] & ', ' & [pt_first]
FROM batches;
The results look like:
SMITH , EARL
How can I get the blanks out after last name? Thanks for any ideas.
SELECT [pt_last] & ', ' & [pt_first]
FROM batches;
The results look like:
SMITH , EARL