Home  Fees/Services   Access Templates   Tutorials   Tutorial Downloads   Articles  Search  Contact  Privacy  Links
Select Query Syntax Select Statement Tutorial  
Home > Tutorials > Query Tutorials > Select Query Example
 

 

 


SQL Select Query

Select Query Example

Select Query begins your basic understanding of SQL data manipulation language in a relational database.
While the select statement starts out simple there are several optional arguments which can lead to a truly complex SQL command which can span several screens.  The purpose of the select command is to return zero or more rows (records or tuples) from one or more tables or views.
See below the SQL select query expands in complexity.

The basic syntax from Microsoft Access help system is as follows:

Select TableName.ColumnName, TableName.ColumnName From TableName;

The expanded SQL select query statement syntax as seen in Microsoft Access help follows:

SELECT [predicate] { * | table.* | [table.]field1 [AS alias1] [, [table.]field2 [AS alias2] [, ...]]} FROM tableexpression [, ...] [IN externaldatabase] [WHERE... ] [GROUP BY... ] [HAVING... ] [ORDER BY... ] [WITH OWNERACCESS OPTION];

Note: The ending semicolon is a required component of all SQL statements. The words ColumnName, Field and FieldName all refer to the same thing.

The SQL SELECT query statement has these parts:

SQL select Query

Now the select query statement with real column and table names:

Select M_Employees.Name, M_Employees.Emp_Number,
M_Employees.Address From M_Employees;

Note that we separate the multiple column names with a comma.

From this point on the select statement gets continuously more complex as we add various optional arguments.

More Access Select Query Examples:

Concatenate Records Text Field

SQL Insert Into Example





Contact Information

Copyright 2000-2012 Blue Claw Database Design, LLC

Query Tutorials Index:
SQL Too Complex Query
SQL Aggregate Query
SQL Not In Operator
SQL Choose Function
SQL Crosstab Query
SQL DateTime Query
SQL Delete Query
SQL External Table Query
SQL Report Filter Query
SQL Group By Query
SQL Having Query Clause
SQL Histogram Query
SQL Insert Into Query
SQL Master Detail Update
SQL Order By Query
SQL Parameter Query
SQL Predicate Query
SQL Self Join Query
SQL Scalar SubQuery
SQL Master Detail Query
SQL Select Query
SQL Select Top
SQL Union Query
SQL Update Query

MultiSelect Parameter Forms Query Tutorial