InterviewSolution
// TRUNCATE table ADMIN;You can USE this to truncate table$this->db->from('admin'); // select admin table$this->db->truncate(); // truncate admin tableORYou can ALSO use LIKE this$this->db->truncate('admin'); // truncate admin table
Your experience on this site will be improved by allowing cookies. Read Cookie Policy