Instead
SELECT
* FROM Table WHERE Name LIKE '%' + p_name + '%'
use
SELECT
* FROM Table WHERE Name LIKE '''%' || p_name || '%'''
|
Results 1 to 6 of 6
Thread: LIKE clause in PL/SQLThreaded View
|
Click Here to Expand Forum to Full Width |