Google News
logo
SQL - Interview Questions
What is the SELECT statement?
SELECT operator in SQL is used to select data from a database. The data returned is stored in a result table, called the result-set.
 
SELECT * FROM myDB.students;
Advertisement