I have a sample query below:
Select column1, column2, column3
from table1
where column1 = 3
and the result is blank
Question: How to update the query that it will return this default result instead of blank rows?
| column1 | column2 | column3 |
|---|---|---|
| no rows found |
I tried a case expression but its still returning a blank row

You have to return a record when your search does not match anything
You can achieve this result using
UNIONoperator, to add to your result set the default row you desire when main search give no results:you can write it using cte for readability