0 votes
in Sql by
What is the SELECT statement?

1 Answer

0 votes
by

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;

...