# 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