There's a need for a query to search on all table columns using one single row. This is the query I have so far:
select * from my_table
where
instr(
Col01 || Col02 || Col03 || Col04 || Col05 || Col06 || Col07 || Col08 || Col09, 'My Searched
Text') > 0
But as per the requirements, the full table must be displayed when the searched value is null. Is there any way to achieve this?