Santiago Moresi

Generation

text to sql syntaxFri, 14 Jul 2023

Del total de clientes que realizaron compras en 2020. Qué porcentaje no había realizado compras en 2019. Tenido la tabla de cliente, compra

SELECT SUM(total_paid) FROM sales WHERE created_at >='2020-01-01' AND created_at <='2020-12-31'; SELECT COUNT(*) FROM customers;

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