delete row mssql

Solutions on MaxInterview for delete row mssql by the best coders in the world

showing results for - "delete row mssql"
Lara
27 Sep 2017
1DELETE FROM table_name WHERE condition;
2
3-- Note: Be careful when deleting records in 
4-- a table! Notice the WHERE clause in the DELETE 
5-- statement. The WHERE clause specifies which record(s) 
6-- should be deleted. If you omit the WHERE clause, all records 
7-- in the table will be deleted!