The Data Management Center

SQL SELECT


Google
 
Web infogoal.com
HOME | SQL OVERVIEW | SQL BASICS | SQL ADMINISTRATION | SQL ADVANCED | SQL SYNTAX


SQL Book Picks

SQL Cookbook
SQL Cookbook by Anthony Molinaro


SQL Visual Quick Start
SQL: Visual QuickStart Guide (2nd Edition) by Chris Fehily

SQL Bible
SQL Bible by Alex Kriegel, Boris M. Trukhnov

SQL Complete Reference
SQL: The Complete Reference, Second Edition by James R Groff, Paul N. Weinberg

SQL for Smarties
Joe Celko's SQL for Smarties: Advanced SQL Programming Third Edition by Joe Celko

Murach SQL Server
Murach's SQL for SQL Server by Bryan Syverson

Previous Next

SQL > SQL Basics > SQL SELECT Statement


What is the SQL SELECT Statement?

The SQL SELECT statement is the SQL command that retrieves data from an SQL database. This operation is also known as a query and is the key to the use of SQL for analysis and reporting. This tutorial section shows the basic SQL SELECT statement so see the SQL Advanced tutorial section for more in depth knowledge.

Why Use the SQL SELECT Statement?

Anytime you want to retrieve information from a SQL database use the SQL SELECT statement to request the information.

How To Use the SQL SELECT Statement

The SQL SELECT command is used as follows. The asterisk can be used to SELECT all columns of a table.

SQL SELECT Statement Syntax

 
SELECT <columnlist>
FROM <tablename>
 

SQL SELECT Statement Example 1

The following example retrieves the columns product_nbr and product_name from all rows of the product table.

 
SELECT product_nbr, product_name
FROM product
 

Results from the execution of the SQL SELECT statement, also known as a query are as follows:

product_nbrproduct_name
1001 SQL Tool 1.0
2001 SQL Tool 2.0 Light
2002 SQL Tool 2.0 Professional
2003 SQL Tool 2.0 Enterprise

SQL SELECT Statement Example 2

The following example retrieves all of the columns from all rows of the product table.

 
SELECT *
FROM product
 

Results show the product_status_code column that was not present in Example 1.

product_nbrproduct_nameproduct_status_code
1001 SQL Tool 1.0 Inactive
2001 SQL Tool 2.0 Light Active
2002 SQL Tool 2.0 Professional Active
2003 SQL Tool 2.0 Enterprise Active

infogoal.com HOME
SQL OVERVIEW

SQL BASICS
SQL SELECT
SQL WHERE
SQL INSERT
SQL UPDATE
SQL DELETE

SQL ADMINISTRATION
SQL CREATE DATABASE
SQL DROP DATABASE
SQL CREATE TABLE
SQL ALTER TABLE
SQL DROP TABLE
SQL CREATE INDEX
SQL DROP INDEX
SQL ADD FOREIGN KEY
SQL DROP FOREIGN KEY
SQL CREATE VIEW
SQL DROP VIEW

SQL ADVANCED
SQL CONCAT
SQL SUBSTRING
SQL TRIM
SQL AND & OR
SQL IN
SQL BETWEEN
SQL LIKE
SQL DISTINCT
SQL GROUP BY
SQL AGGREGATE
SQL HAVING
SQL ORDER BY
SQL JOIN
SQL OUTER JOIN

SQL SYNTAX

Data Model Resource Book Vol 1
Data Model Resource Book Vol 2
HOME | SQL OVERVIEW | SQL BASICS | SQL ADMINISTRATION | SQL ADVANCED | SQL SYNTAX
Copyright© 1999-2006, First Place Software, Inc.