SET Project_List_val=CONCAT(Project_Number_val,'_List');
Insert Into test (Manthan_Panel_Id) select Manthan_Panel_Id from Project_List_val where Project_Number_val='9';
在插入语句中有一个名为“Project_List_val”的变量,它由上述步骤中连接的表名组成。该语句没有将变量的内容作为表名,而是将“Project_List_val”作为表名并给出未找到表的错误。
有什么建议么?