Answers for "how to delete from sql table"

SQL
10

delete all records from table

DELETE FROM table_name;
Posted by: Guest on June-01-2020
0

sql delete query

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
Posted by: Guest on October-25-2021

Code answers related to "how to delete from sql table"

Code answers related to "SQL"

Browse Popular Code Answers by Language