SQL Select

The SQL SELECT statement is used to fetch the data from a database table which returns this data in the form of a result table. These result tables are called result-sets.

For Example :


If we need to select the data from the Customer Table then we will need to use following Query : 

Table Name : customer

SELECT * FROM customer; 

Post a Comment

0 Comments