Complete the SQL query to select all records from the retraining_schedule table.
SELECT [1] FROM retraining_schedule;The * symbol selects all columns from the table.
Complete the SQL query to find retraining events scheduled after January 1, 2024.
SELECT * FROM retraining_schedule WHERE retrain_date [1] '2024-01-01';
< which selects dates before the given date.= which selects only that exact date.The > operator selects dates after January 1, 2024.
Fix the error in the query to count retraining events triggered by drift.
SELECT COUNT(*) FROM retraining_events WHERE trigger_type = [1];String values in SQL must be enclosed in single quotes.
Fill both blanks to select model names and their last retraining date for models with performance below 0.8.
SELECT model_name, [1] FROM model_performance WHERE performance [2] 0.8;
Select the last retraining date and filter models with performance less than 0.8.
Fill all three blanks to create a dictionary of model names to their retraining count where retraining was triggered by schedule.
SELECT [1], COUNT(*) AS retrain_count FROM retraining_events WHERE trigger_type = [2] GROUP BY [3];
Select model names, count retraining events triggered by schedule, and group by model name.