SQLize Online / PHPize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
CREATE table cliente( id int not null primary key AUTO_INCREMENT, nome varchar(10), email varchar(10) ); alter table cliente add cep char(9) not null; alter table cliente add rede_social varchar(30); alter table cliente drop column cep; alter table cliente modify column nome varchar(40) not null; alter table cliente rename column rede_social to social; alter table cliente add CPF varchar(14); alter table cliente add CONSTRAINT CPF_uniq unique(CPF); alter table cliente drop CONSTRAINT cpf_uniq; alter table cliente rename to clientes; desc clientes; -- ||||||||||||||||||Tabela do Navyy -- FLAME||||||||||||||||||||||||

Stuck with a problem? Got Error? Ask ChatGPT!

Copy Clear