When writing INSERT queries I'd like PL/SQL Developer to highlight "column-value" pair that is currently under a cursor in a text editor.
Say I have a simple query:
So when I place a cursor at "name", both "name" and it's value "John" should be highlighted.
Say I have a simple query:
SQL:
insert into TEST_TABLE
(id, name)
values
(1, 'John');
So when I place a cursor at "name", both "name" and it's value "John" should be highlighted.