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
create table t (client_id int, time_key date); insert into t values (1, '2022-01-01'), (2, '2022-02-01'), (22, '2022-02-01'), (3, '2022-03-01'), (3, '2022-03-01'), (4, '2022-04-01'), (5, '2022-05-01'), (6, '2022-06-01'), (7, '2022-07-01'), (77, '2022-07-01'), (8, '2022-08-01'), (9, '2022-09-01'), (10, '2022-10-01'), (11, '2022-11-01'), (12, '2022-12-01'); select date_part('year', time_key) as "year", date_part('month', time_key) as "month", sum(cnt) over(order by time_key rows between 2 preceding and current row) as cumcount from ( select time_key, count(distinct client_id) as cnt from t group by 1 )foo
SQL
Server:
MariaDB 11.4
MariaDB 11.5
MariaDB 10
MariaDB 10 Sakila (ReadOnly)
MySQL 5.7
MySQL 5.7 Sakila (ReadOnly)
MySQL 8.0
MySQL 8.0 Sakila (ReadOnly)
SQLite 3
SQLite 3 Preloaded
PostgreSQL 10 Bookings (ReadOnly)
PostgreSQL 11
PostgreSQL 12
PostgreSQL 13
PostgreSQL 14
PostgreSQL 15
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