I would like to run a query that returns the first word only from a particular field, this field has multiple words separated by spaces, I assume I may need to carry out some re
select substring(test_field, 1, instr(test_field, ' ')) from test_table