Generation

text to sql syntaxMon, 12 Jun 2023

calcular el total de ingresos y promedio de ingresos diarios para cada año

SELECT year, SUM(home_runs) as home_runs, AVG(home_runs) as promedio_de_ingresos_diarios FROM salaries GROUP BY year;

Want to kickstart your project?Use the new AI Studio to create your code