Open In App

Select statement in MS SQL Server

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

In this article, the most basic statement used in SQL is being discussed.

Basic statement: select

  1. There are large amounts of data available everywhere.
  2. The data is stored in a sequential order in form of a table.
  3. Each table consists of a row which represents a unique record and column represents a field.
  4. Schemas are used to arrange the tables in a logical order.
  5. In order to extract particular data from the tables, queries are being used which is written in Structured Query Language(SQL).
  6. To query data, select statement is used.

Syntax:

select 
select_list;
from
schema_name.table.name; 

In order to retrieve all the columns from a table, select* is being used.

Syntax -
select*
from
table_name; 

Points to remember:

  1. In the real time databases, select* isn’t recommended for use because it retrieves the data more than your requirements.
  2. It results in slow functioning of the application.
  3. In case, the user adds more columns to the table, the select* statement retrieves all the columns including the new ones resulting in crashing of the application.

Example:

Roll number Name Course
111 Riya CSE
112 Apoorva ECE
113 Mina Mech
114 Rita Biotechnology
115 Veena Chemical
116 Deepa EEE

If the user wants to retrieve the name of the student pursuing Computer Science, the query is as follows:

select 
name 
from
course.student
where course='cse' 

Note that course is the name of the schema and student is the name of the table.

The output will be retrieved as follows:

Name Course
Riya CSE

Note –
To retrieve the query, another statement where is being used which will be discussed in further articles.


Last Updated : 04 Jun, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads