“Como excluir a linha no SQL” Respostas de código

Excluir linhas da tabela SQL

TRUNCATE table my_table;
Puzzled Penguin

SQL Exclua onde em

-- Deletes all records where `columnName` matches the values in brackets.
DELETE FROM tableName WHERE columnName IN ('val1', 'val2', 'val3');
SmokeFrog

Como excluir a linha no SQL

DELETE FROM my_table;		-- all rows
DELETE FROM my_table WHERE my_id = 12345;
DELETE FROM my_table WHERE my_id IN (SELECT id2 FROM my_table2);
VasteMonde

Respostas semelhantes a “Como excluir a linha no SQL”

Perguntas semelhantes a “Como excluir a linha no SQL”

Procure respostas de código populares por idioma

Procurar outros idiomas de código