Correct Answer: A - CREATE PROCEDURE procedure_name AS ...
Correct Answer: B - To execute a set of SQL statements as a single unit.
Correct Answer: A - SELECT * FROM employees;
Correct Answer: B - SELECT
Correct Answer: A - The process of organizing data to reduce redundancy.
Correct Answer: A - By using indexes and optimizing the query structure.
Correct Answer: A - To combine rows from two or more tables based on a related column.
Correct Answer: A - UPDATE table_name SET column1 = value1 WHERE condition;
Correct Answer: B - To aggregate data across multiple records.
Correct Answer: B - LEFT JOIN returns all records from the left table and matched records from the right table.
Correct Answer: A - To combine rows from two or more tables based on a related column.
Correct Answer: A - A method to increase the speed of data retrieval operations.
Correct Answer: A - DROP TABLE table_name;
Correct Answer: A - CREATE TABLE table_name;
Correct Answer: A - The process of organizing data to reduce redundancy.
Correct Answer: A - SELECT DISTINCT column_name FROM table_name;
Correct Answer: A - Create, Read, Update, Delete
Correct Answer: A - To group rows that have the same values in specified columns.
Correct Answer: B - A key that links two tables together.
Correct Answer: A - Create, Read, Update, Delete