MS SQL Server Concepts and Programming Question:
Download Questions PDF

How To Select Some Specific Rows from a Table in MS SQL Server?

MS SQL Server Interview Question
MS SQL Server Interview Question

Answer:

If you don't want select all rows from a table, you can specify a WHERE clause to tell the query to return only the rows that meets the condition defined in the WHERE clause. The WHERE clause condition is a normal Boolean expression. If any data from the table needs to be used in the Boolean expression, column names should be used to represent the table data.

The first select statement below only returns rows that have url names containing the letter "a". The second select statement returns no rows, because the WHERE clause results FALSE for all rows in the table.

SELECT * FROM ggl_links WHERE url LIKE '%s%'
GO
id url notes counts created
102 globalguideline.com/sql NULL 0 2007-05-19
103 globalguideline.com/xslt NULL NULL 2007-05-19

SELECT * FROM ggl_links WHERE id < 100
GO
0 row


Download MS SQL Server Interview Questions And Answers PDF

Previous QuestionNext Question
How To Select Some Specific Columns from a Table in a Query in MS SQL Server?How To Add More Data to the Testing Table in MS SQL Server?