I have names in my table field called name:
John James/ABCD2
Carl Richards/EVV3
Richard Smith/AVR1
How can I query it so I just get the names so my results will be:
John James
Carl Richards
Richard Smith
My attempt didnt work:
John James/ABCD2
Carl Richards/EVV3
Richard Smith/AVR1
How can I query it so I just get the names so my results will be:
John James
Carl Richards
Richard Smith
My attempt didnt work:
Code:
select *
from tableNames
order by Mid(name, Instr(1, name, Chr(47))