SELECT id, name, created_at
FROM employees
WHEREYEAR(created_at)=YEAR(CURDATE());
This query selects the "id", "name", and "created_at" columns from the "employees" table for records where the year of the "created_at" date matches the current year.
PromptDB can make mistakes. Please double-check responses.