Answers for "drop all rows from table"

SQL
9

delete all records from table

DELETE FROM table_name;
Posted by: Guest on June-01-2020
1

sql delete all values in a column

UPDATE TableName SET ColumnName = NULL
Posted by: Guest on October-03-2020
5

sql delete where in

-- Deletes all records where `columnName` matches the values in brackets.
DELETE FROM tableName WHERE columnName IN ('val1', 'val2', 'val3');
Posted by: Guest on February-20-2020
0

drop all data from tables

DELETE FROM my_table;			-- all rows, needs a COMMIT to validate
TUNCATE TABLE my_table;			-- all rows, quicker, no possible roolback
Posted by: Guest on May-08-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language