Which SQL statement is used to extract data from a database?
SELECT statement:-
A SELECT statement is used to extract the information from a database. Most of the actions you require to perform on a database are done with SQL statements.
The below SQL statement selects all the records in the "Slightbook" table,
SELECT * FROM SlightbookDb;
SQL keywords are NOT case sensitive: select is the same as SELECT
What does SQL stand for?