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
-- Вендорсы DROP TABLE IF EXISTS Vendors; CREATE TABLE Vendors ( vend_id VARCHAR(5) PRIMARY KEY NOT NULL, vend_name VARCHAR(50) NOT NULL, vend_address VARCHAR(50) DEFAULT NULL, vend_city VARCHAR(50) DEFAULT NULL, vend_state VARCHAR(5) DEFAULT NULL, vend_zip VARCHAR(10) DEFAULT NULL, vend_country VARCHAR(50) DEFAULT NULL ); INSERT INTO Vendors VALUES ('BRE02', 'Bear Emporium', '500 Park Street', 'Anytown', 'OH', '44333', 'USA'), ('BRS01', 'Bears R Us', '123 Main Street', 'Bear town', 'MI', '44444', 'USA'), ('DLL01', 'Doll House Inc.', '555 High Street', 'Dollsville', 'CA', '99999', 'USA'), ('FNG01', 'Fun and Games', '42 Galaxy Road', 'London', NULL, 'N16 6PS', 'USA'), ('FRB01', 'Furball Inc.', '1000 5th Avenue', 'New York', 'NY', '11111', 'England'), ('JT01', 'Jouets et ours', '1 Rue Amusement', 'Paris', NULL, '45678', 'France'); SELECT RTRIM(CONCAT(vend_country, vend_zip)) AS trimmed_concatenated_result FROM Vendors ORDER BY vend_country;
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