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 postlist ( id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, post VARCHAR(1000) NOT NULL, name VARCHAR(80) NOT NULL, title VARCHAR(80) NOT NULL ); CREATE TABLE commentlist ( id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, post_id INTEGER NOT NULL, comment VARCHAR(80) NOT NULL, name VARCHAR(80) NOT NULL ); INSERT INTO postlist (post, name, title) VALUES ('Fooey Bars', 'Author1', 'First Post'), ('Barfoo', 'Author2', 'Second Post'), ('Far Boo', 'Author3', 'Third Post'), ('Roof Bar', 'Author4', 'Fourth Post'); INSERT INTO commentlist (post_id, comment, name) VALUES (1, 'Great post!', 'Emily Davis'), (1, 'I agree!', 'Mohammed Preet'), (2, 'Interesting read', 'Sarah Thompson'), (3, 'Looking forward to more posts!', 'Chris Lee'), (3, 'Well written', 'Olivia Martinez'), (4, 'Thanks for sharing', 'David Rodriguez');
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