delete sql all rows code example
Example 1: delete all records from table
DELETE FROM table_name;
Example 2: delete all records from table except sql
delete from yourTableName where yourColumnName NOT
IN(‘yourValue1’,‘yourValue2’,‘yourValue3’,.........N);
Example 3: delete query
public function deletedata(){
$this->db->where('id', 2);
$this->db->delete('table_name');
}