Answers for "rows delete in sql"

SQL
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
0

delete from table sql

DELETE FROM `table` WHERE condition
Posted by: Guest on June-18-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language