Select Statement in SQL Select statement is most used command in SQL. It is used to fetch data from table and display data in tabular form. The syntax of select statement is: SELECT *FROM Table_Name; Suppose we have a below EMP table Emp_ID Emp_Name Emp_Age Emp_Salay 1 Mohan 25 25000 2 Rakesh 25 25000 3 Ram 25 25000 Now we have above table which is already created and now we want to fetch all table data from above table so for this we use below Select statement to retrieve SELECT Statement to retrieve Data from EMP table: SELECT *FROM EMP ; Now after executing this command , the output will be : Emp_ID Emp_Name Emp_Age Emp_Salay 1 Mohan 25 25000 2 Rakesh 25 25000 3 Ram 25 25000
Software Quality Assurance