1

これは私のクエリです:

set @agent_id = select agnt.id from agent agnt , session ses 
where ses.session_id = '0021a7ca-6e' and ses.employee_id = agnt.employee_id ;

insert into inquiry_placed_by(inquiry_id , agent_id) values(1 , @agent_id); 

私が得るこのエラー:

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your 
MySQL server version for the right syntax to use near 'select agnt.id from agent agnt , 
session ses where ses.session_id = '0021a7ca-6e' at line 1

この種の操作はmysqlで可能ですか、それとも何か不足していますか?
ありがとう。

4

1 に答える 1

1

最初の2行を置き換えます。

set @agent_id = (
select agnt.id from agent agnt , session ses 
where ses.session_id = '0021a7ca-6e' and ses.employee_id = agnt.employee_id ) ;
于 2012-06-28T06:18:12.793 に答える