CREATE table cliente(
id int not null primary key AUTO_INCREMENT,
nome varchar(10),
email varchar(10)
);
desc cliente;
alter table cliente add data_nascimento date not null;
alter table cliente drop column email;
desc cliente;
alter table cliente add note nolt(0<nome and nome>10);