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 cliente( id_cliente int not null PRIMARY KEY auto_increment, nome_cliente varchar(50) not null, fone char(12) not null unique ); create table pedido( id_pedido int not null PRIMARY KEY auto_increment, data_pedido date not null, id_cliente int not null, CONSTRAINT fk_id_cliente FOREIGN key (id_cliente) REFERENCES cliente (id_cliente) ); alter table cliente add cpf varchar(12) not null unique; alter table pedido add cod_pedido int not null; alter table cliente drop column cpf; alter table pedido drop column cod_pedido; alter table cliente MODIFY COLUMN fone varchar(12) not null unique; alter table cliente RENAME COLUMN id_cliente to id_comprador; alter table cliente add CONSTRAINT fone_uniq unique(fone); alter table cliente drop CONSTRAINT fone_uniq; desc cliente; desc pedido;

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

Copy Clear