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
/* { "first_name": "Jared", "last_name": "Ely", "concatDeails":{ "conctant_name": "Jared Ely"}, "Address":{"city": "NY" ,"Zip": 123123}, "Payments":[{"payment_id": 1,"amount":100 , "credit": null }] } */ create table customer (id int, first_name varchar, last_name varchar); insert into customer values (1, 'Jared', 'Ely'); create table address (customer_id int, city varchar, Zip varchar); insert into address values (1, 'NY', '123123'); create table payment (payment_id int, customer_id int, amount int, credit int); insert into payment values (1, 1, 100, null), (2, 1, 50, 50); select json_build_object( 'first_name', customer.first_name , 'concatDeails', json_build_object( 'conctant_name', customer.first_name || ' ' || customer.last_name ), 'Address', json_build_object( 'city', address.city, 'Zip', address.Zip ), 'Payments', payment ) from customer left join address on address.customer_id = customer.id left join ( select customer_id, array_agg(json_build_object( 'payment_id', payment_id, 'amount', amount, 'credit', credit )) from payment group by customer_id ) payment on payment.customer_id = customer.id;
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