PopSQL
To delete rows in a SQL Server table, use the DELETE statement:
DELETE
delete from sessions where id = 10;
The WHERE clause is optional, but you'll usually want it, unless you really want to delete every row from the table.
WHERE
delete from sessions;
Spread the word