79229596

Date: 2024-11-27 09:20:23
Score: 2.5
Natty:
Report link

you could use this query:

SELECT State, SUM(State_Customers) AS Total_Customers, COUNT(*) over() FROM Customer_t Group By State Order by State_Customers desc;

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mahsa Einabadi