This is a dedicated watch page for a single video.
A developer uses GitHub Copilot to generate SQL queries. After providing the prompt: “Write an SQL query to fetch all employees who joined after January 1, 2020.” Copilot generates the following response: SELECT * FROM employees WHERE join_date > '2020-01-01' ; The developer now wants to refine the query to include filtering based on department names while ensuring the results are ordered by join date in descending order. Which approach best demonstrates the use of few-shot prompting to refine the Copilot's response?