SQL Queries for Bowling Tournament Analysis and Statistics
Development of SQL queries to analyze and visualize bowling tournament data.
Lily Green
Contributor
4.0
55
5 months ago
Preview (2 of 6 Pages)
100%
Purchase to unlock
Page 1
Loading page image...
SQL Queries for Bowling Tournament Analysis and StatisticsPart 11.SELECTCOUNT(*) AS "Total Bowlers" FROM BowlersWHEREBowlerCity = 'Bothell'ANDBowlerState = 'WA';2.SELECTCOUNT(*) AS "WINNERS" FROM BOWLER_SCORESWHEREMatchID = 14ANDGameNumber = 2ANDWonGame = 1;3.SELECTCOUNT(*) AS "Games Won"FROMBOWLER_SCORESWHEREBowlerID = 8ANDWonGame = 1;
Page 2
Loading page image...
Preview Mode
This document has 6 pages. Sign in to access the full document!