Sempre que alguma informação deixar de ser relevante para ser armazenada, pode-se exlcuí-la de tabelas. O comando delete pode, da mesma forma

Que o comando update, afetar uma ou mais linhas de uma tabela.



Sintexe Delete from nome_tabela where condição


Delete from cliente where id_cliente = 1

Delete from cliente where id_cliente in(1,2,3)

Delete from cliente where id_cliente between 1 and 2

Delete from cliente where id_cliente = 10

Delete from cliente where id_cliente in(9,10)

Delete from cliente where nome = 'francisco adelmo da silva'

Delete from cliente where email = 'adelmo-tenorio@hotmail.com'