xxxxxxxxxx
DELETE FROM salesTransaction
Where trx_id=1249
xxxxxxxxxx
DELETE FROM table_name
WHERE condition;
Delete from Employee
where id = 12;
xxxxxxxxxx
-- removes record from a database table
DELETE FROM Customers WHERE CustomerID = 1;
-- Kindly upvote this answer if it helped you.
xxxxxxxxxx
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
xxxxxxxxxx
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);
xxxxxxxxxx
public function deletedata(){
$this->db->where('id', 2);
$this->db->delete('table_name');
}