|
Please note that the information on
this page is related to an older version of Microsoft SQL
Server.
Click on SQL Server
Tutorials for new training content and material. In
addition we have FREE SQL
Tutorial videos here, so feel free to download
the demos. Our partners also manage two blogs on
the following SQL Server Versions:
-SQL Server 2008
Blog -SQL
Azure Blog
Please send any comments or suggestion
to info@sqlserver2008tutorial.com
The query tool in SQL Server lets you search
the database using TRANSACT SQL. In order to start the query, click
on Tools, select SQL Query Tool. A new window will pop up. Make sure
the database you want to do a query on is selected under DB. Type in
the following code in the window
SELECT * FROM ANGIO_FIELD_META
The Query window looks like this. Also note that the SQL statements are case insensitive so you don't have to use Caps like I used above

When you execute this query by clicking on the green arrow, you will get all the data from the table "angio_field_meta". The result looks something like this

|