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 person ( id bigint primary key , name varchar not null, age integer not null default 10, gender varchar default 'female' not null , address varchar ); alter table person add constraint ch_gender check ( gender in ('female','male') ); insert into person values (1, 'Anna', 16, 'female', 'Moscow'); insert into person values (2, 'Andrey', 21, 'male', 'Moscow'); insert into person values (3, 'Kate', 33, 'female', 'Kazan'); insert into person values (4, 'Denis', 13, 'male', 'Kazan'); insert into person values (5, 'Elvira', 45, 'female', 'Kazan'); insert into person values (6, 'Irina', 21, 'female', 'Saint-Petersburg'); insert into person values (7, 'Peter', 24, 'male', 'Saint-Petersburg'); insert into person values (8, 'Nataly', 30, 'female', 'Novosibirsk'); insert into person values (9, 'Dmitriy', 18, 'male', 'Samara'); create table pizzeria (id bigint primary key , name varchar not null , rating numeric not null default 0); alter table pizzeria add constraint ch_rating check ( rating between 0 and 5); insert into pizzeria values (1,'Pizza Hut', 4.6); insert into pizzeria values (2,'Dominos', 4.3); insert into pizzeria values (3,'DoDo Pizza', 3.2); insert into pizzeria values (4,'Papa Johns', 4.9); insert into pizzeria values (5,'Best Pizza', 2.3); insert into pizzeria values (6,'DinoPizza', 4.2); create table person_visits (id bigint primary key , person_id bigint not null , pizzeria_id bigint not null , visit_date date not null default current_date, constraint uk_person_visits unique (person_id, pizzeria_id, visit_date), constraint fk_person_visits_person_id foreign key (person_id) references person(id), constraint fk_person_visits_pizzeria_id foreign key (pizzeria_id) references pizzeria(id) ); insert into person_visits values (1, 1, 1, '2022-01-01'); insert into person_visits values (2, 2, 2, '2022-01-01'); insert into person_visits values (3, 2, 1, '2022-01-02'); insert into person_visits values (4, 3, 5, '2022-01-03'); insert into person_visits values (5, 3, 6, '2022-01-04'); insert into person_visits values (6, 4, 5, '2022-01-07'); insert into person_visits values (7, 4, 6, '2022-01-08'); insert into person_visits values (8, 5, 2, '2022-01-08'); insert into person_visits values (9, 5, 6, '2022-01-09'); insert into person_visits values (10, 6, 2, '2022-01-09'); insert into person_visits values (11, 6, 4, '2022-01-01'); insert into person_visits values (12, 7, 1, '2022-01-03'); insert into person_visits values (13, 7, 2, '2022-01-05'); insert into person_visits values (14, 8, 1, '2022-01-05'); insert into person_visits values (15, 8, 2, '2022-01-06'); insert into person_visits values (16, 8, 4, '2022-01-07'); insert into person_visits values (17, 9, 4, '2022-01-08'); insert into person_visits values (18, 9, 5, '2022-01-09'); insert into person_visits values (19, 9, 6, '2022-01-10'); create table menu (id bigint primary key , pizzeria_id bigint not null , pizza_name varchar not null , price numeric not null default 1, constraint fk_menu_pizzeria_id foreign key (pizzeria_id) references pizzeria(id)); insert into menu values (1,1,'cheese pizza', 900); insert into menu values (2,1,'pepperoni pizza', 1200); insert into menu values (3,1,'sausage pizza', 1200); insert into menu values (4,1,'supreme pizza', 1200); insert into menu values (5,6,'cheese pizza', 950); insert into menu values (6,6,'pepperoni pizza', 800); insert into menu values (7,6,'sausage pizza', 1000); insert into menu values (8,2,'cheese pizza', 800); insert into menu values (9,2,'mushroom pizza', 1100); insert into menu values (10,3,'cheese pizza', 780); insert into menu values (11,3,'supreme pizza', 850); insert into menu values (12,4,'cheese pizza', 700); insert into menu values (13,4,'mushroom pizza', 950); insert into menu values (14,4,'pepperoni pizza', 1000); insert into menu values (15,4,'sausage pizza', 950); insert into menu values (16,5,'cheese pizza', 700); insert into menu values (17,5,'pepperoni pizza', 800); insert into menu values (18,5,'supreme pizza', 850); create table person_order ( id bigint primary key , person_id bigint not null , menu_id bigint not null , order_date date not null default current_date, constraint fk_order_person_id foreign key (person_id) references person(id), constraint fk_order_menu_id foreign key (menu_id) references menu(id) ); insert into person_order values (1,1, 1, '2022-01-01'); insert into person_order values (2,1, 2, '2022-01-01'); insert into person_order values (3,2, 8, '2022-01-01'); insert into person_order values (4,2, 9, '2022-01-01'); insert into person_order values (5,3, 16, '2022-01-04'); insert into person_order values (6,4, 16, '2022-01-07'); insert into person_order values (7,4, 17, '2022-01-07'); insert into person_order values (8,4, 18, '2022-01-07'); insert into person_order values (9,4, 6, '2022-01-08'); insert into person_order values (10,4, 7, '2022-01-08'); insert into person_order values (11,5, 6, '2022-01-09'); insert into person_order values (12,5, 7, '2022-01-09'); insert into person_order values (13,6, 13, '2022-01-01'); insert into person_order values (14,7, 3, '2022-01-03'); insert into person_order values (15,7, 9, '2022-01-05'); insert into person_order values (16,7, 4, '2022-01-05'); insert into person_order values (17,8, 8, '2022-01-06'); insert into person_order values (18,8, 14, '2022-01-07'); insert into person_order values (19,9, 18, '2022-01-09'); insert into person_order values (20,9, 6, '2022-01-10'); --7 INSERT INTO menu (id, pizzeria_id, pizza_name, price) VALUES (19, 2, 'greek pizza', 800); --9 INSERT INTO menu (id, pizzeria_id, pizza_name, price) VALUES ( ((SELECT MAX(id) FROM menu)+1), (SELECT pizzeria.id FROM pizzeria WHERE pizzeria.name = 'Dominos'), 'sicilian pizza', 900 ); --9 INSERT INTO person_visits (id, person_id, pizzeria_id, visit_date) VALUES ( ((SELECT MAX(id) FROM person_visits)+1), (SELECT person.id FROM person WHERE person.name = 'Denis'), (SELECT pizzeria.id FROM pizzeria WHERE pizzeria.name = 'Dominos'), '2022-02-24' ); INSERT INTO person_visits (id, person_id, pizzeria_id, visit_date) VALUES ( ((SELECT MAX(id) FROM person_visits)+1), (SELECT person.id FROM person WHERE person.name = 'Irina'), (SELECT pizzeria.id FROM pizzeria WHERE pizzeria.name = 'Dominos'), '2022-02-24' ); --10 INSERT INTO person_order (id, person_id, menu_id, order_date) VALUES ( ((SELECT MAX(id) FROM person_order)+1), (SELECT person.id FROM person WHERE person.name = 'Denis'), (SELECT menu.id FROM menu WHERE menu.pizza_name = 'sicilian pizza'), '2022-02-24' ); INSERT INTO person_order (id, person_id, menu_id, order_date) VALUES ( ((SELECT MAX(id) FROM person_order)+1), (SELECT person.id FROM person WHERE person.name = 'Irina'), (SELECT menu.id FROM menu WHERE menu.pizza_name = 'sicilian pizza'), '2022-02-24' ); --11 UPDATE menu SET price = ROUND(price - 0.1 * price, 0) WHERE menu.pizza_name = 'greek pizza'; --12 WITH person_rows_gen AS (SELECT count_person + (SELECT MAX(ID) FROM person_order) AS id, person.id AS person_id, (SELECT id FROM menu WHERE pizza_name = 'greek pizza') as menu_id, CAST('2022-02-25' AS DATE) AS order_date FROM person INNER JOIN generate_series(1, (SELECT COUNT(id) FROM person)) AS count_person ON person.id = count_person ) INSERT INTO person_order (id, person_id, menu_id, order_date) SELECT * FROM person_rows_gen; --13 DELETE FROM person_order WHERE order_date = '2022-02-25'; DELETE FROM menu WHERE pizza_name = 'greek pizza'; INSERT INTO person_visits (id, person_id, pizzeria_id, visit_date) VALUES ((SELECT MAX(id)+1 FROM person_visits), 9, 5, '2022-01-08'); CREATE TABLE person_audit ( created timestamp with time zone DEFAULT current_timestamp NOT NULL, type_event CHAR(1) DEFAULT 'I' NOT NULL, row_id bigint NOT NULL, name varchar, age integer, gender varchar, address varchar ); ALTER TABLE person_audit ADD CONSTRAINT ch_type_event CHECK (type_event IN ('I', 'U', 'D')); CREATE OR REPLACE FUNCTION fnc_trg_person_insert_audit() RETURNS trigger AS $person_audit$ BEGIN IF (TG_OP = 'INSERT') THEN INSERT INTO person_audit SELECT current_timestamp, 'I', new.id, new.name, new.age, new.gender, new.address; END IF; RETURN NULL; END; $person_audit$ LANGUAGE plpgsql; CREATE TRIGGER trg_person_insert_audit AFTER INSERT ON person FOR EACH ROW EXECUTE FUNCTION fnc_trg_person_insert_audit(); INSERT INTO person(id, name, age, gender, address) VALUES (10,'Damir', 22, 'male', 'Irkutsk'); CREATE OR REPLACE FUNCTION fnc_trg_person_update_audit() RETURNS trigger AS $person_audit$ BEGIN IF (TG_OP = 'UPDATE') THEN INSERT INTO person_audit(created, type_event, row_id, name, age, gender, address) VALUES( current_timestamp, 'U', OLD.id, OLD.name, OLD.age, OLD.gender, OLD.address); END IF; RETURN NULL; END; $person_audit$ LANGUAGE plpgsql; CREATE TRIGGER trg_person_update_audit AFTER UPDATE ON person FOR EACH ROW EXECUTE FUNCTION fnc_trg_person_update_audit(); UPDATE person SET name = 'Bulat' WHERE id = 10; UPDATE person SET name = 'Damir' WHERE id = 10; CREATE OR REPLACE FUNCTION fnc_trg_person_delete_audit() RETURNS trigger AS $person_audit$ BEGIN IF (TG_OP = 'DELETE') THEN INSERT INTO person_audit(created, type_event, row_id, name, age, gender, address) VALUES( current_timestamp, 'D', OLD.id, OLD.name, OLD.age, OLD.gender, OLD.address); END IF; RETURN NULL; END; $person_audit$ LANGUAGE plpgsql; CREATE TRIGGER trg_person_delete_audit AFTER DELETE ON person FOR EACH ROW EXECUTE FUNCTION fnc_trg_person_delete_audit(); DELETE FROM person WHERE id = 10; CREATE OR REPLACE FUNCTION fnc_trg_person_audit() RETURNS trigger AS $person_audit$ BEGIN IF (TG_OP = 'INSERT') THEN INSERT INTO person_audit SELECT now(), 'I', NEW.id, NEW.name, NEW.age, NEW.gender, NEW.address; ELSIF (TG_OP = 'UPDATE') THEN INSERT INTO person_audit(created, type_event, row_id, name, age, gender, address) VALUES( now(), 'U', OLD.id, OLD.name, OLD.age, OLD.gender, OLD.address); ELSIF (TG_OP = 'DELETE') THEN INSERT INTO person_audit(created, type_event, row_id, name, age, gender, address) VALUES( now(), 'D', OLD.id, OLD.name, OLD.age, OLD.gender, OLD.address); END IF; RETURN NULL; END; $person_audit$ LANGUAGE plpgsql; CREATE TRIGGER trg_person_audit AFTER INSERT OR UPDATE OR DELETE ON person FOR EACH ROW EXECUTE FUNCTION fnc_trg_person_audit(); DROP TRIGGER IF EXISTS trg_person_insert_audit ON person; DROP TRIGGER IF EXISTS trg_person_update_audit ON person; DROP TRIGGER IF EXISTS trg_person_delete_audit ON person; DROP FUNCTION IF EXISTS fnc_trg_person_insert_audit; DROP FUNCTION IF EXISTS fnc_trg_person_update_audit; DROP FUNCTION IF EXISTS fnc_trg_person_delete_audit; TRUNCATE TABLE person_audit; INSERT INTO person(id, name, age, gender, address) VALUES (10,'Damir', 22, 'male', 'Irkutsk'); UPDATE person SET name = 'Bulat' WHERE id = 10; UPDATE person SET name = 'Damir' WHERE id = 10; DELETE FROM person WHERE id = 10; select * from person_audit;
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