# 1Multiple ChoiceWhich SQL statement is used to modify an existing column in a table?UPDATE COLUMNALTER TABLE MODIFY COLUMNCHANGE COLUMNMODIFY TABLE
# 2Multiple ChoiceWhich SQL clause is used to filter groups based on a specified condition?WHEREHAVINGGROUP BYORDER BY
# 3Multiple ChoiceWhat is the purpose of a foreign key in SQL?To uniquely identify each record in a table.To enforce data integrity by linking tables.To sort data in ascending order.To aggregate data from multiple rows.
# 4Multiple ChoiceWhich SQL statement is used to add a column to an existing table?ADD COLUMNINSERT COLUMNALTER TABLE ADD COLUMNCREATE COLUMN
# 5Multiple ChoiceWhat is a primary key in SQL?A column that can contain NULL values.A column that uniquely identifies each record in a table.A column used for sorting data.A column that links two tables together.
# 6Multiple ChoiceWhich SQL clause is used to combine rows that have the same data into one row?JOINGROUP BYORDER BYWHERE
# 7Multiple ChoiceWhat does the `*` symbol represent in a SQL SELECT statement?It selects only the first row.It selects all columns.It selects all rows.It selects a specific column.
# 8Multiple ChoiceWhich SQL statement is used to delete a table from a database?DELETE TABLEREMOVE TABLEDROP TABLEALTER TABLE
# 9Multiple ChoiceWhich SQL statement is used to create a new table in a database?NEW TABLECREATE TABLEMAKE TABLEADD TABLE
# 11Multiple ChoiceWhich SQL keyword is used to specify the condition for selecting data?FROMWHERESELECTORDER BY