SQLize Online / PHPize Online  /  SQLtest Online

A A A
Share      Blog   Popular
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 ChatGPT!

Copy Clear