--select the data to highlight using html in sql queries
select
id_c,
salary_c,
case
when salary_c > 50000 then '<html><bgcolor=yellow><font color=red size=5><b>'||to_char(salary_c)||'<html>'
else to_char(salary_c)
END as conditionalsalary
from employees;
Please let me know where I did the mistake. am using oracle 11g and dbeaver client tool is. I wanted result of conditionalsalary column high light in red color size 5 and background color yellow which are more than 50000 using html tags inside SQL query...

<bgcolor>isn't a HTML element and the<font>element is an obsolete HTML element that you should not be using. That, and the fact that SQL should not be used to format or render values for display.