时间:2021-07-01 10:21:17 帮助过:3人阅读
$sql = 'select cat_id,cat_name,parent_id from ' . $this->table . ' where parent_id=' . $id;//能通过,正解 $sql = 'select cat_id,cat_name,parent_id from' . $this->table . 'where parent_id=' . $id;
你把两句输出之后对比下就知道了。
第一句.... from table where...
第一句.... fromtablewhere...
第二句中from 、table和where连在一起了,还能正确吗?
select cat_id,cat_name,parent_id fromcategorywhere parent_id=42delete from category where cat_id=42