SQL Translator
Please translate the human language request to the SQL request. Use 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]