Monday, April 25, 2011

SQL Server - Query Designer VII

In the previous lesson, we created a SQL script using SQL Server Management Studio (SSMS). In this lesson, we will look at how to write SQL scripts using the graphical query designer.

About The Query Designer

The graphical query designer is a graphical user interface that allows you to build queries to run against your SQL Server database. This can be particularly useful when building complex queries that involves many tables, views etc.
The query designer can also be beneficial for those who are learning how to write SQL. This is because you don't need to remember the SQL syntax in order to write queries against your database - the query designer generates the SQL for you.




Building Your Queries

To build a query with the query gesigner:


1.       Select Query > Design Query in Editor...:



2.       Add the tables you want to run the query against. In this case, we only have one table to choose from.


3.       Select the column/s you want to display in your query:


4.       Click "OK"
Once you've clicked OK, you will find the query has been added to your workspace. You can then run it as you would any other query.

No comments:

Post a Comment