2017-05-05 26 views
-2

我想從我的表中選擇除了一個以外的所有行,所以我添加了一個不存在的條件,但我有一個錯誤,說「解析錯誤:語法錯誤,意外'')''( T_CONSTANT_ENCAPSED_STRING)」Codeigniter中不存在的地方

這裏是我的代碼:

$query = 'select * from etudiant where NOT EXISTS (select * from etudiant where matricule ='.$new_matricule') '; 
       $exec = $this->db->query($query); 

Canyou告訴我,請我做了什麼錯?

回答

0

語法錯誤添加點

$query = 'select * from etudiant where NOT EXISTS (select * from etudiant where matricule ='.$new_matricule.') '; 
+0

我沒有注意到,對不起,謝謝您 –