Which of the following SQL statements is used to retrieve data from a database?
- SELECT
- INSERT
- UPDATE
- DELETE
The 'SELECT' statement is used to retrieve data from a database. It allows you to query and fetch specific data from one or more tables in a database.
Loading...
Related Quiz
- A session token that is stored securely on the user's device and is used to recognize returning users without requiring them to log in again is called a ________.
- You are working on an online exam portal. To ensure that the user doesn't get the same session ID even if they retake the exam, what should you do at the beginning of each exam?
- Which of the following are differences between variables and constants in PHP?
- What is a multidimensional array in PHP?
- A constructor in a PHP class is defined using the __construct() method.