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 names( id INTEGER PRIMARY KEY, name VARCHAR ); insert into names(id, name) values (1, 'John Doe'), (2, 'Jane Doe'), (3, 'Alice Jones'), (4, 'Bobby Louis'), (5, 'Lisa Romero'); CREATE TABLE results( id INTEGER PRIMARY KEY, event VARCHAR, winner_id integer ); insert into results(id, event, winner_id) values (1, '100 meter dash', 2), (2, '500 meter dash',3), (3, 'cross-country', 2), (4, 'triathalon', null); SELECT * FROM NAMES; SELECT * FROM results; select * from names where id not in( select winner_id from results )
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