Oracle - using bind variable in LIKE clause of dynamic cursor
问题 I am using dynamic cursor for fetching data. Query that is being executed looks similar to: query := 'SELECT column1, column2 FROM my_table WHERE column1 LIKE ''%:bv1%'''; And the cursor itself is executed like this: OPEN my_cursor FOR query USING my_var1; I also tried to check the query and print it: ... WHERE column1 LIKE '%:bv1%' ... so apostrophes are escaped, but the cursor fetches no data. Is it even possible to use bind variables in LIKE clause and if yes, what did I do wrong? 回答1: