Santiago Moresi

Generation

text to sql syntaxFri, 14 Jul 2023

Del total de clientes. Qué porcentaje realizó compras sólo por el canal online entre 2019 y 2020

SELECT COUNT(*) * 100 / (SELECT COUNT(*) FROM customers WHERE online_order!=1) FROM customers WHERE online_order=1;

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