Which SQL command is used to retrieve data from a database table?
- DELETE
- INSERT
- SELECT
- UPDATE
The SQL command used to retrieve data from a database table is SELECT. It allows you to query and fetch specific data based on specified conditions. UPDATE, DELETE, and INSERT are used for modifying or adding data.
Loading...
Related Quiz
- What is the purpose of YARN in the Hadoop ecosystem?
- In dplyr, which function combines two data frames horizontally?
- ________ is a common tool used in Python for sending HTTP requests to an API.
- _______ is a technique used to handle imbalanced datasets in predictive model training.
- In Python, print("ABC".____()) outputs "abc".