Код: Выделить всё
$this->db->query('
DELETE FROM default_model
WHERE cat_id NOT IN (
SELECT id
FROM default_category
)
');
Код: Выделить всё
$query = $this->db
->select('id')
->get('category')
->result();
$this->db
->where_not_in('cat_id', $query)
->delete('model');
Подробнее здесь: https://stackoverflow.com/questions/276 ... ery-builde
Мобильная версия