Is it possible that Execute SQL Query without Displaying results?
like
Select * from Table_Name
after running this query result sh
Is the goal to suppress all rows? Then use a filter that evaluates to false for every row:
SELECT * FROM Table_Name WHERE 1 = 2