1. SQL Statement Classifications SQL statements are categorized based on their functional purpose within the database architecture: Data Manipulation Language (DML): Retrieves data from the database, enters new rows, changes existing rows, and removes unwanted rows from tables in the database. Commands: SELECT , INSERT , UPDATE , DELETE , MERGE NOTE: While SELECT is frequently categorized under DML in training curricula (including Oracle University), it is formal...