Adding Html tag into the title of the Tree query in Oracle APEX
问题 I have a requirement to make few text in the title of my tree query in Oracle APEX to bold by adding b tag. But when i do that, the tag is displayed at the front end. My query is as mentioned below. I do not want to see the b tag, rather i want the text enclosed by b tag to be bold. Please help. SELECT CASE WHEN CONNECT_BY_ISLEAF = 1 THEN 0 WHEN level = 1 THEN 1 ELSE -1 END AS status, level, CASE WHEN level = 1 THEN questions ELSE '<b>' -- Comes in the front end which i do not want || flow