How to Execute SQL Query without Displaying results

前端 未结 11 1280

Is it possible that Execute SQL Query without Displaying results?

like

Select * from Table_Name

after running this query result sh

11条回答
  •  无人及你
    2020-12-03 06:56

    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
    

提交回复
热议问题