How to: Execute a Partial Query
09/10/2025 The Transact-SQL Editor allows you to highlight a specific segment of the script and execute it as a single query. This makes it easy for you to debug sections of complex queries. 1. In
The Transact-SQL Editor allows you to highlight a specific segment of the script and execute it
as a single query. This makes it easy for you to debug sections of complex queries.
- In
Object Explorer
, double-click
under
to open it in
Transact-SQL editor.
- Highlight the
segment in the code, right-click
and select.
- All the rows with the specified fields in the
table are returned in the
pane.
PerishableFruits
SELECT p.Id, p.Name FROM dbo.Product p
Products