In a relational database, data is stored in tables. The Select statement allows you to retrieve records from one or more tables in your database.
The reductive syntax for the Select statement is:
|
Example #1
|
This example demonstrates a very simple Select query, which uses * to select all of the fields in EmployeeAddressTable.
Example #2
|
By using the Where clause, you can focus your selection by specifying certain criteria to be met by the values. The above example returns the names of all employees who live in state Ohio.
Example #3
|
The result set would display the salary and employee name fields where the EmployeeIDNo value existed in both the EmployeeStatisticsTable and EmployeeAddressTable.