SQL Server – Switch Between Result Pan and Query Pan – SQL Shortcut

When writing queries in SQL Server Management Studio (SSMS), developers often need to scroll through the result set displayed in the result pane. Most developers use a mouse to switch between the Query Pane and Result Pane, but there’s a faster and more efficient way using a keyboard shortcut.

F6 is the keyboard shortcut you can use to toggle between the Query Pane and the different tabs of the Result Pane.

If this explanation feels unclear, try running a query in SSMS and then pressing F6 to see its effect. Once you try it, you’ll find this shortcut helpful for improving your workflow.

SQL Server - Switch Between Result Pan and Query Pan - SQL Shortcut shortcut-800x799

A Conference Experience: Handling Unexpected Challenges – SQL Shortcut

At a recent conference I attended, a speaker experienced a hard drive failure just before their presentation. Naturally, they panicked and thought the session would be ruined. I suggested they adapt by demonstrating product features without relying on their demos. They followed the advice, completed the session, and left the audience satisfied despite the setback. However, little did I know that my own turn for an unexpected mishap was coming later that day!

For those interested in keyboard shortcuts or resetting them in SSMS, here’s an additional resource:
SSMS 2012 Reset Keyboard Shortcuts to Default. Let us connect more on Twitter.

Reference: Pinal Dave (https://blog.sqlauthority.com)

SQL Server, SQL Server Management Studio, SQL Shortcut
Previous Post
SQLAuthority News – Download Tools and Documentation for SQL SERVER
Next Post
SQLAuthority News – Author Visit – Ahmedabad SQL Server User Group Meeting – November 2008

Related Posts

12 Comments. Leave new

  • Excellent little tip Pinal.

    Reply
  • i want select date without time.

    select NextDate from table;

    result:
    2008-12-16 00:00:00:000

    i want remove 00:00:00:000 this from my result…..

    Reply
  • Imran Mohammed
    December 6, 2008 6:48 am

    @Ashish

    you have to use convert function and then se convert styles.

    select convert( varchar(10), NextDate , 126) from table
    go
    select convert( varchar(10), NextDate , 21) from table
    go
    select convert( varchar(10), NextDate , 121) from table

    Regards,
    Imran

    Reply
  • Nice Tip.. Another observation. If you want to go back to the previous tab user Shift + F6

    Reddy P

    Reply
  • lakshminarayanan sampath
    December 25, 2008 9:49 pm

    CTRL+R is another keyboard shortcut you can use to switch between query & result tabs.

    Reply
  • Thanks Pinal
    It was useful as the other articles

    Reply
  • Sanjay Monpara
    December 5, 2012 5:18 pm

    I have three pane opened (query,result & message).
    In this case cursor navigating in circular scenario, here if you want to avoid message pane you can use Shift+F6 go back query pane from result pane

    Reply
  • Muhammad Mushtaq Sheikh
    November 3, 2016 10:32 am

    Excellent .. You saved us from wasting any more of our time and energy. Thanks buddy..

    Reply
  • JEAN PIERRE PEREZ
    December 1, 2021 9:27 pm

    what about if I want to change F6 for Ctrl+Q? Just to gain microseconds you know

    Reply

Leave a Reply