Visual Studio Code SQL results dock to bottom

Viewed 6759

I'm trying to dock the SQL queries results to bottom in VS Code, as we see at SSMS. In old versions of VS Code I could do it, but I don't know what happened. The results can be moved only to left/right of window now, and the results view are awful in this way.

I want to make the VS Code SQL results disposed like this:

But I have only this on VS Code:

enter image description here

Any help will be appreciated.

5 Answers

Following works on Mac :

Go to Menu > View > Editor Layout > Flip Layout.

I don't see that option on Windows though. But you can just flip the layout by pressing Alt + Shift + 0

As of December 2020


View → Editor Layout → Two Rows

You can also simple click on results tab and drag to bottom of source code window or anywhere else you want, no need to use menus really.

Related