ORACLE DATA SEARCH [closed]

-1

Does anyone know any way to search for words within the oracle developer ??? to search for matches within the database
I need to find where the functions or procedures could make SELECTS to a table

    
asked by eduardo morua 15.11.2017 в 19:59
source

1 answer

0

You could try something like this:

select * from NAME_TABLE where CAMPO_DE_BUSQUEDA like '% LO_QUE_QUIERES_BUSCAR %';

or if you want to search for a word within the Query it is with ctrl + f

    
answered by 16.11.2017 / 00:53
source