sql clear table code example
Example 1: truncate table mysql
TRUNCATE TABLE `fourniture`
Example 2: query to empty table data in sql server
TRUNCATE TABLE table_name;
Example 3: delete all records from table
DELETE FROM table_name;
Example 4: truncate table
TRUNCATE TABLE table;
Example 5: sql delete where in
-- Deletes all records where `columnName` matches the values in brackets.
DELETE FROM tableName WHERE columnName IN ('val1', 'val2', 'val3');