In Interactive SQL, the output for each command remains in the Results pane until the next command is executed. To keep a record of your data, you can save the output of each statement to a separate file.
Statement1; OUTPUT TO file1 go statement2; OUTPUT TO file2 go
select * from titles go output to "C:\My Documents\Employees.txt"