The SELECT statement is used to select the data from the databse.By using SELECT command you can fetch the record from the table "using WHERE Clause"..
Syntax:
SELECT column_name FROM table_name;
If you want to retrive the value of all the coloumns you can put this syntax:
SELECT * FROM table_name;