SQL Programming: Saving/Listing each row in a SQL SELECT query results set
While debugging various enterprise management software’s that ship with a data hosted on SQL database, systems engineers requires to run various SQL queries to get the underlying information. While debugging the results returned from the query, one need to be able to observer each row returned by the SQL query. Here is quick way to run your any DQL query and verify the results at each row. This will be essentially handy when you want to inspect the temporary data in your SQL program. [code language=”sql”] DECLARE @action_code INT DECLARE row_cursor CURSOR FOR SELECT ACTUALACTION_IDX FROM test_gunnalag OPEN row_cursor — […]
Read more