An execution plan (sometimes called a query plan) shows how the database engine will (or did) execute a SQL query.Execution plans provide information on steps involved in retrieving data, such as indexes used, table joins, sorting, and more.Interpreting execution plans helps in diagnosing query problems and guiding performance optimizations.Understanding execution plans is a fundamental skill in SQL performance tuning.