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 emp ( ename varchar(20), enumber number, ecity varchar(10) ); insert into emp values('utkarsh',9967070941,'dahisar'); insert into emp values('bhavesh',8989898989,'kandivali'); select *from emp; alter table emp add(country varchar2(20)); update emp SET country='INDIA' where ename='utkarsh'; select * from emp; alter table emp drop column country; select * from emp; alter table emp add(salary int); update emp SET salary=10000; select * from emp; alter table emp modify salary float; update emp SET salary=10000.25 where ename='bhavesh'; select * from emp; update emp SET enumber='' where ename='utkarsh'; select * from emp; delete from emp where ename='utkarsh'; select * from emp; insert into emp values ('devansh',9321541398,'malad',12000); insert into emp values ('dhanvi',12345567996,'andheri',14000); insert into emp values ('amit',1478523692,'kandivali',15000); select * from emp; select * from emp where ecity='kandivali'; create table emp1 as select * from emp; select * from emp; create view empview as select ename,ecity from emp; select * from empview; update emp SET ecity='' where ename='dhanvi'; select * from emp; create view empview2 as select ename,ecity from emp where ecity is not null; select * from empview2;
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