What SQL keyword is used to retrieve data from a database?

  • FETCH
  • FILTER
  • SEARCH
  • SELECT
The correct SQL keyword used to retrieve data from a database is SELECT. This keyword is followed by specific columns or a wildcard (*) to indicate all columns that should be retrieved from a table or tables in the database. Using SELECT is fundamental in SQL as it forms the basis of querying data from databases.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *