Hi! Could we please enable some services and cookies to improve your experience and our website?

SQLize | PHPize | SQLtest

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

A A A
Login    Share code      Blog   FAQ
Copy Format Clear
create table clients (uid integer primary key, title character varying(50) not null, phone character(15)); create table orders (uid integer primary key, ordernum character(5) unique, client integer not null); insert into clients values(1,'Рога и копыта',''), (2,'Иванов ИИ',''); insert into orders values(1,'A0001',1), (2,'B0001',2); select * from clients; select * from orders;

Stuck with a problem? Got Error? Ask AI support!

Copy Clear