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 recipients ( id INT, email varchar(100), shop varchar (20), first_notification_time datetime, second_notification_time datetime, third_notification_time datetime ); INSERT INTO recipients (id,email, shop, first_notification_time, second_notification_time, third_notification_time) VALUES (1,'aaa@aaa.com', 'vivantis', '2024-07-16 16:00:00', '2024-07-16 14:00:00', '2024-07-16 10:00:00'); INSERT INTO recipients (id,email, shop, first_notification_time, second_notification_time, third_notification_time) VALUES (2,'aaa@aaa.com', 'hodinky', '2024-07-16 16:00:00', '2024-07-16 14:00:00', '2024-07-16 10:00:00'); INSERT INTO recipients (id,email, first_notification_time, second_notification_time, third_notification_time) VALUES (3,'aab@aaa.com', '2024-07-16 16:00:00', '2024-07-16 14:00:00', null); SELECT email FROM ( SELECT email, SUM(CASE WHEN first_notification_time >= NOW() - INTERVAL 1 DAY THEN 1 ELSE 0 END + CASE WHEN second_notification_time >= NOW() - INTERVAL 1 DAY THEN 1 ELSE 0 END + CASE WHEN third_notification_time >= NOW() - INTERVAL 1 DAY THEN 1 ELSE 0 END) as email_count FROM recipients WHERE email IN ('aaa@aaa.com') AND shop = 'vivantis' GROUP BY email ) AS subquery WHERE email_count >= 3
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