初学php,遇到了个奇怪的问题,让大侠们见笑了,拼接语句如下:
$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