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 students (stud_ID int AUTO_INCREMENT KEY, no_zk varchar(6), kurs varchar(1), spec varchar(7), gr varchar(2)); insert into students (no_zk,kurs,spec,gr) values ('202201','1','АМОЕ','22'), ('202202','1','МАЕ','30'), ('202203','1','МАЕ','30'), ('202204','1','АМОЕ','22'), ('202205','1','АМОЕ','22'), ('202206','1','АМОЕ','22'), ('202207','1','МАЕ','30'), ('202208','1','АМОЕ','22'); select * from students; DROP TRIGGER IF EXISTS `students_constraints_insert` ; DELIMITER $$ CREATE TRIGGER tr BEFORE INSERT ON students FOR EACH ROW BEGIN IF not(NEW.kurs >=1 and NEW.kurs <= 6) THEN SET NEW.kurs = 0; IF not(NEW.spec >= 'А' AND NEW.spec <= 'я') THEN SET NEW.spec = 0; IF not(NEW.gr >='01' AND NEW.gr <= '99') THEN SET NEW.gr = 0; END IF; END IF; END IF; END $$ DELIMITER ; insert into students (no_zk,kurs,spec,gr) values ('202209','8','АМОЕ','AA'); select * from students;
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