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 funcionario( id_funcionario int not null primary key auto_increment, nome varchar (100) not null, salario decimal (10,2) not null, departamento varchar(40) not null, dependente int check(dependente >=0), dt_nascimento date not null ); insert into funcionario (nome, salario, departamento,dt_nascimento) values ('Astrogildo',2000,'RH','1971-02-17'); insert into funcionario (nome, salario, departamento,dt_nascimento,dependente) values ('Irene',2000,'RH','1978-05-27',2); insert into funcionario (nome, salario, departamento,dt_nascimento,dependente) values ('Perla',2200,'RH','1978-09-01',1); insert into funcionario (nome, salario, departamento,dt_nascimento,dependente) values ('Manuela',5500,'TI','1988-03-07',1); insert into funcionario (nome, salario, departamento,dt_nascimento,dependente) values ('Roberta',4500,'TI','1987-09-12',2); insert into funcionario (nome, salario, departamento,dt_nascimento,dependente) values ('Ramon',4200.30,'TI','1988-12-22',3); insert into funcionario (nome, salario, departamento,dt_nascimento,dependente) values ('Astolfo',7800.55,'DIRETORIA','1979-03-15',3); insert into funcionario (nome, salario, departamento,dt_nascimento,dependente) values ('Mariana',7800.55,'DIRETORIA','1975-03-15',4); insert into funcionario (nome, salario, departamento,dt_nascimento) values ('Anacleto',3500,'COMERCIAL','1979-09-25'); insert into funcionario (nome, salario, departamento,dt_nascimento,dependente) values ('Mariana',3600,'COMERCIAL','1979-07-22',2);
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