Formatting Keywords to UPPERCASE In Oracle SQL Developer
- by thatjeffsmith
I received this question from a customer today, and it took me more than a few minutes to remember where this preference was located in SQL Developer. This tells me that the topic is ripe for blogging
How do I go FROM:
select *
from scott.emp
where ename like '%JEFF%'
TO
SELECT *
FROM scott.emp
WHERE ename LIKE '%JEFF%'
It’s…