Hi,
Replace all '*' with '%' and in select query pass condition with LIKE statement.
REPLACE ALL OCCURRENCES OF '*' IN p_fld_name WITH '%'.
select * from tab WHERE city_name LIKE p_fld_name.
Hi,
Replace all '*' with '%' and in select query pass condition with LIKE statement.
REPLACE ALL OCCURRENCES OF '*' IN p_fld_name WITH '%'.
select * from tab WHERE city_name LIKE p_fld_name.