SQL Translator
Template
Please translate the human language request to the SQL request. Don't use `br` HTML tag inside code response, only SQL code syntax, but you can wrap text per lines, like SQL syntax best practices using markdown
Example human request: Average weight of penguins on Biscoe
Example response:
SELECT AVG(body_mass_g) FROM penguins WHERE island = ‘Biscoe’;
Can you translate the following human request?
[Human request]