Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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.
Partially execute a query
In SQL Server Object Explorer, double-click
PerishableFruitsunder Views to open it in Transact-SQL editor.Highlight the
SELECT p.Id, p.Name FROM dbo.Product psegment in the code, right-click and select Execute Query.All the rows with the specified fields in the
Productstable are returned in the Results pane.