What rows does this SQLite query print?

from Advanced SQL
SQLite 3.45.1 advanced 2 min

What rows does this SQLite query print?

SQL
WITH scores(name, points) AS (
  VALUES ('Ari', 10), ('Bo', 10), ('Cy', 20)
)
SELECT
  name,
  points,
  SUM(points) OVER (ORDER BY points) AS running_points
FROM scores
ORDER BY name;
Open in playground
Report an error