NeoGames Interview Question

2. Write an SQL query that will summarize the balance for all Chrome players whose name start with "QA":

Interview Answer

Anonymous

Mar 28, 2022

SELECT COUNT (*) FROM Players Where PlayerName like ‘%QA%’_