What does SQL stand for?
Structured Query Language
SQL is used specifically for relational databases.
SQL is classified as a Domain-Specific Language (DSL). True or False?
TRUE
A DSL is used in specific circumstances, unlike general-purpose languages like JavaScript or Python.
What is the purpose of the SELECT command in SQL?
To query data from a single table
Example: ‘SELECT x FROM y’ retrieves records from a specified table.
Fill in the blank: The WHERE clause is used to _______.
narrow-down to a specific value or values
It allows for filtering results in SQL queries.
Name the types of JOIN clauses in SQL.
JOIN clauses are used to query data from multiple tables.
What are query aggregates used for in SQL?
They allow for summarizing data returned from queries.
What does CRUD stand for?
CRUD represents the basic operations for managing data in a database.
What is the C in CRUD?
Create
It refers to adding new data to the database.
What is the R in CRUD?
Read
It refers to retrieving records from the database.
What is the U in CRUD?
Update
It refers to editing existing records in the database.
What is the D in CRUD?
Delete
It refers to removing records from the database.