Collections:
What Is a SELECT Query Statement in SQL Server
What Is a SELECT Query Statement in SQL Server?
✍: FYIcenter.com
The SELECT statement is also called the query statement. It is the most frequently used SQL statement in any database application. SELECT statements allows you to retrieve data from one or more tables or views, with different selection criteria, grouping criteria and sorting orders.
A SELETE statement has the following basic syntax:
SELECT select_list FROM table_source WHERE search_condition GROUP BY group_by_expression HAVING search_condition ORDER BY order_by_expression
Here is an example of a SELECT statement with all clauses mentioned above:
SELECT SalesOrderID, SUM(LineTotal) AS TotalPrice FROM SalesLT.SalesOrderDetail WHERE ModifiedDate > '2004-05-01' GROUP BY SalesOrderID HAVING COUNT(*) > 30 ORDER BY TotalPrice DESC
⇒ Testing Table for SELECT Statements in SQL Server
⇐ Using SELECT Statements and GROUP BY Clauses in SQL Server
⇑ Using SELECT Statements and GROUP BY Clauses in SQL Server
2016-10-26, 1903🔥, 0💬
Popular Posts:
How To Start MySQL Server in MySQL? If you want to start the MySQL server, you can run the "mysqld" ...
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...
Where to find Oracle database server tutorials? Here is a collection of tutorials, tips and FAQs for...
How To Connect the Oracle Server as SYSDBA in Oracle? This is Step 4. The best way to connect to the...
How To Convert Character Strings into Numeric Values in SQL Server Transact-SQL? Sometimes you need ...