我正在尝试从模型类为闭包表编写控制器类。
试图让我的头脑进入它,但这似乎很困难。我想将条目插入到闭包表中。
这是模型:
public $table;
public $closure_table = 'closures';
public function __construct($table_name = NULL, $closure_table = NULL){
parent::__construct();
$this->table = $table_name;
if ($closure_table !== NULL) {
$this->closure_table = $closure_table;
}
}
public function add($node_id, $target_id = 0) {
$sql = 'SELECT ancestor, '.$node_id.', lvl+1
FROM '.$this->closure_table.'
WHERE descendant = '.$target_id.'
UNION ALL SELECT '.$node_id.','.$node_id.',0';
$query = 'INSERT INTO '.$this->closure_table.'(ancestor, descendant, lvl) ('.$sql.')';
$result = $this->db->query($query);
return $result;
}
错误信息
“UNION 的语法错误”