0
how to delete single record from row?
1 ответ
+ 2
You can update it and set it to null.
UPDATE TableName
SET columnName = null
WHERE id = 1
If you want to remove the whole row (and btw a record is a row)
DELETE FROM TableName
WHERE id = 1