SQLize
Online
/
PHPize Online
/
SQLtest Online
A
A
A
Share
Donate
Blog
Popular
Donate
A
A
A
Share
Blog
Popular
SQLize.online is a free online SQL environment for quickly running, experimenting with and sharing code.
You can run your SQL code on top of the most popular RDBMS including MySQL, MariaDB, SQLite, PostgreSQL, Oracle and Microsoft SQL Server.
SQL code:
Upload
Copy
Format
Clear
-- Step 1: Assign group numbers to consecutive flips WITH RankedFlips AS ( SELECT [flipper], -- Employee performing the flip [flip result], -- Result of the flip (H or T) -- Calculate the difference between row numbers to create groups of consecutive flips ROW_NUMBER() OVER (PARTITION BY [flipper] ORDER BY [time of flip]) - ROW_NUMBER() OVER (PARTITION BY [flipper], [flip result] ORDER BY [time of flip]) AS grp FROM [IWPR].[dbo].[coin_flipping] ), -- Step 2: Calculate the length of each run of heads GroupedHeads AS ( SELECT [flipper], -- Employee performing the flip COUNT(*) AS run_length, -- Length of the run of heads grp -- Group number of the run FROM RankedFlips WHERE [flip result] = 'H' -- Consider only the runs of heads GROUP BY [flipper], grp -- Group by employee and group number ) -- Step 3: Find the maximum run length of heads for each flipper SELECT [flipper], -- Employee performing the flip MAX(run_length) AS longest_run_heads -- Longest unbroken run of heads FROM GroupedHeads GROUP BY [flipper] ORDER BY 2 DESC; -- Group by employee
SQL
Server:
MariaDB 11.4
MariaDB 11.5
MariaDB 10
MariaDB 10 Sakila (ReadOnly)
MySQL 8.0
MySQL 8.0 Sakila (ReadOnly)
SQLite 3
SQLite 3 Preloaded
PostgreSQL 10 Bookings (ReadOnly)
PostgreSQL 13
PostgreSQL 14
PostgreSQL 15
PostgreSQL 16
PostgreSQL 17
MS SQL Server 2017
MS SQL Server 2019
MS SQL Server 2022
MS SQL Server 2022 AdventureWorks (ReadOnly)
Firebird 4.0
Firebird 4.0 (Employee)
Oracle Database 19c (HR)
Oracle Database 21c
Oracle Database 23c Free
SOQOL
Version
ER Diagram
Preserve result
Stuck with a problem?
Got Error?
Ask ChatGPT!
Result:
Copy
Clear