“Remova o registro da tabela SQL” Respostas de código

SQL Excluir

DELETE FROM table_name WHERE condition;
-- 			Ex.
DELETE FROM Customers WHERE CustomerName='Mustafa Mbari';
Mustafa Mbari

SQL Excluir

DELETE FROM computer WHERE name = '{}'
Curious Cockroach

SQL Excluir

DELETE FROM sakila.actor
WHERE actor_id = 201;
Scary Salamander

SQL Excluir consulta

CREATE PROC dbo.DeleteLotsOfStuff
(@id int)
AS

Begin

DELETE FROM login WHERE klantid = @id
DELETE FROM klantGegevens WHERE klantid = @id
DELETE FROM orderGegevens WHERE loginNr = @id

End
Witty Willet

Remova o registro da tabela 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 “Remova o registro da tabela SQL”

Perguntas semelhantes a “Remova o registro da tabela SQL”

Mais respostas relacionadas para “Remova o registro da tabela SQL” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código