Pregunta

I want to get all the titles from a table in an interactive report where a certain word is found within another column of that table (article column). The word would be input through a text field called "TEXT". This is what I have in the interactive report region source:

SELECT title as "Word found in" 
FROM articles 
WHERE article like '% :TEXT %'

I'm not sure how to deal with the "TEXT" text field, this worked for equal (as in WHERE something =: TEXT)

Thanks!

¿Fue útil?

Solución

SELECT title as "Word found in" 
FROM articles 
WHERE instr(TEXT, article)>0;

I'm not at all sure what you're doing here, but this may work for you.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top