Home
 Articles
 Book Store
 DIT
 Login
 Register
 News
 Online Training Courses
 Programming
 Research Papers
 Software Development
 Students Notes
  Web Hosting

 
 

10000 cute sms in 33 different categories and all mobile stuff for free please support us by visiting our sponsor website replysms.com

Learning Sql from admin of this Websie

 SQL Intro  SQL Delete  SQL Union
 SQL  Tables  SQL Order By  SQL Create
 SQL Select  SQL AND & OR  SQL Drop
 SQL Where  SQL In  SQL Alter
 SQL Like  SQL Between  SQL Functions
 SQL Insert  SQL Aliases  SQL Group By
 SQL Update  SQL Join  SQL Select Into

SQL Create View


 

The SQL SELECT Statement

The SELECT statement is used to select data from a table. The tabular result is stored in a result table (called the result-set).

Syntax

SELECT column_name(s)
FROM table_name

 Note: SQL statements are not case sensitive. SELECT is the same as select.


SQL SELECT Example

To select the content of columns named "LastName" and "FirstName", from the database table called "Persons", use a SELECT statement like this:

SELECT LastName,FirstName FROM Persons

The database table "Persons":

LastName FirstName Address City
Tanveer Shah Petroman college DIKhan
Bukhari Syed Gomal University DIKhan
Amjad Rehman Gulsahan colony Lahore

The result

LastName FirstName
Tanveer Shah
Bukhari Syed
Amjad Rehman

 

Select All Columns

To select all columns from the "Persons" table, use a * symbol instead of column names, like this: 

SELECT * FROM Persons

Result

LastName FirstName Address City
Tanveer Shah Petroman college DIKhan
Bukhari Syed Gomal University DIKhan
Amjad Rehman Gulsahan colony Lahore

 

The Result Set

The result from a SQL query is stored in a result-set. Most database software systems allow navigation of the result set with programming functions, like: Move-To-First-Record, Get-Record-Content, Move-To-Next-Record, etc.

Programming functions like these are not a part of this tutorial. To learn about accessing data with function calls, please visit our ADO tutorial.


Semicolon after SQL Statements?

Semicolon is the standard way to separate each SQL statement in database systems that allow more than one SQL statement to be executed in the same call to the server.

Some SQL tutorials end each SQL statement with a semicolon. Is this necessary? We are using MS Access and SQL Server 2000 and we do not have to put a semicolon after each SQL statement, but some database programs force you to use it.


The SELECT DISTINCT Statement

The DISTINCT keyword is used to return only distinct (different) values.

The SELECT statement returns information from table columns. But what if we only want to select distinct elements?

With SQL, all we need to do is to add a DISTINCT keyword to the SELECT statement:

Syntax

SELECT DISTINCT column_name(s)
FROM table_name

 

Using the DISTINCT keyword

To select ALL values from the column named "Company" we use a SELECT statement like this:

SELECT Company FROM Orders

"Orders" table

Company OrderNumber
Sony 3412
itbaba 2312
Singer 4678
itbaba 6798

Result

Company
Sony
itbaba
Singer
itbaba

Note that "itbaba" is listed twice in the result-set.

To select only DIFFERENT values from the column named "Company" we use a SELECT DISTINCT statement like this:

SELECT DISTINCT Company FROM Orders

Result:

Company
Sony
itbaba
Singer



  

 

 
 

Copyright © http://www.itbaba.com. 2007 All Rights