Hello all
I have a field in a table that has this string:
"question: what is the time now?
answer: it is 9:00";
I would like to create a select statement that will select only the question part up till answer.
in other words the results should be:
field = "question: what is the time now?"
is it possible using sql statement?
thanks!