|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - Selecting Some Specific Rows from a Table
By: FYIcenter.com
(Continued from previous topic...)
How To Select Some Specific Rows from a Table?
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 fyi_links WHERE url LIKE '%a%'
GO
id url notes counts created
102 dba.fyicenter.com NULL 0 2007-05-19
103 sqa.fyicenter.com NULL NULL 2007-05-19
SELECT * FROM fyi_links WHERE id < 100
GO
0 row
(Continued on next topic...)
- What Is a SELECT Query Statement?
- How To Create a Testing Table with Test Data?
- How To Select All Columns of All Rows from a Table with a SELECT statement?
- How To Select Some Specific Columns from a Table in a Query?
- How To Select Some Specific Rows from a Table?
- How To Add More Data to the Testing Table?
- How To Sort the Query Output with ORDER BY Clauses?
- Can the Query Output Be Sorted by Multiple Columns?
- How To Sort Query Output in Descending Order?
- How To Count Rows with the COUNT(*) Function?
- Can SELECT Statements Be Used on Views?
- How To Filter Out Duplications in the Returning Rows?
- What Are Group Functions in Query Statements?
- How To Use Group Functions in the SELECT Clause?
- Can Group Functions Be Mixed with Non-group Selection Fields?
- How To Divide Query Output into Multiple Groups with the GROUP BY Clause?
- How To Apply Filtering Criteria at Group Level with The HAVING Clause?
- How To Count Duplicated Values in a Column?
- Can Multiple Columns Be Used in GROUP BY?
- Can Group Functions Be Used in the ORDER BY Clause?
|