- HubPages»
- Technology»
- Computers & Software»
- Computer Software
Basic Structure of SELECT Statement
SELECT statement retrieves information from the database. If you want to retrieve any information, you must have to use SELECT statement. SELECT statement is one of the most useful statement of SQL. SELECT statement has several keywords and clause. This page describes about the basic structure of SELECT statement.
Learn more about SQL
Syntax of SELECT statement
SELECT * | {[DISTINCT] column | expression [alias], ... }
FROM table;
Clauses of SELECT statement
SELECT statement has two clauses:
- SELECT clause: This clause specifies which column will be displayed
- Form clause: This clause identifies from which table the information will be retrieved.
Description of the SELECT statement syntax
The syntax of SELECT statement has several parts. Now, those will be explain:
- SELECT: By this one or more column is listed.
- * : It selects all the columns of the table.
- DISTINCT: It only distinct the information and suppresses duplication.
- column | expression : It selects the specific named column or the expression
- alias : It gives a different headings to the selected column.
- FROM table: It specifies the table containing the columns where table is the name of the table.
This is the basic structure of SELECT statement. If you have any difficulties or questions, you can ask it to the comment section. I will try to answer your questions.
© Written by rancidTaste
If you are enjoyed this post, please consider to give a thumbs up and leave a comment. You may Subscribe to rancidTaste's RSS feed to get new pages which will be delivered to your feed reader. You can also read more hubs by rancidTaste.
Want to express your knowledge and ideas, click here to join Hubpages.
It's simple, just like 1-2-3