I have the following situation:
[color=# 40bfff] Contents of the field DS_LOUDO [/color]
Clinical criteria
The patient did not present symptomatology of coronary insufficiency.
Interrupted test due to exhaustion in a 44ml / kg.min VO2 and 13METS.
ECG comments and pre-effort
Sinus rhythm. Within the norms of normality.
Conclusion
Sub-maximum ergometric test (100% of FC Max.) No ischemic changes to the present examination.
physiological tension response to effort.
Physiological chronotropic response to effort.
Absence of significant arrhythmias during the examination.
Good cardiorespiratory fitness.
I need to return to the SQL query only the lines that are below the word "conclusion", but I did not find a way to limit this query.
The field that provides this data is of the LONG type.
SELECT DS_LAUDO FROM
( SELECT DS_LAUDO FROM LAUDO_PACIENTE
where nr_atendimento = 3037270
ORDER BY dbms_random.value )
WHERE rownum =1
Thanks from now!