Loading, please wait...

Select Query

How To Use Select Query In SQL

 

Introduction:
In this article, you will learn what select query is and how to use the select query in SQL.

We use this query to store the records from the tables in SQL database. Generally, we use this query to put up data from a database table, which returns data in the form of result. These tables result is called result-sets.

 

Syntax

The syntax of the SELECT statement is as follows:

select * from table_name;

 

Step 1: We write the select query.

 

 

 

Step 2: We select our query and find out the result.

 

 

 

Summary:
Thus, we learned about the select query in SQL.