I have a description column in my table and its values are:
This is a EXAMPLE This is a TEST This is a VALUE
I want to display only EXAMPLE
Try this:
SELECT SUBSTR(column_name, INSTR(column_name,' ',-1) + 1) FROM your_table;