0

SQLステートメントにエラーがあります

SELECT temp.*  FROM 
    (SELECT th1.process_id,th2.process_id FROM `thread` as th1,`thread` as th2
    where (th1.thread_id=th2.thread_id)and 
    (th1.process_id!=th2.process_id) and 
    (th1.analysis_id='".$analysis_id."' ) and  
    (th2.analysis_id='".$analysis_id."' )) as temp 
     where ((t emp.p1  NOT IN (select pr.parent_process_id from process as pr 
            wherer pr.process_id=th2.process_id and (th2.analysis_id='".$analysis_id."' ) 
                and (pr.analysis_id='".$analysis_id."' )))  
        or  (temp.p2  NOT IN 
                         (select pr1.parent_process_id from process as pr1 
                           wherer pr1.process_id=th1.process_id  and (th2.analysis_id='".$analysis_id."' ) 
and (pr1.analysis_id='".$analysis_id."' ))))
4

1 に答える 1

4

whererの代わりに使用すると、明らかな構文エラーがありwhereます。

wherer pr.process_id=th2.process_id and

する必要があります

where pr.process_id=th2.process_id and

MySQL がCheck the manual for the correct syntax to use near...のようなエラーを報告した場合は、その場所または構文エラーの直前の文字を正確に調べてください。

near 'wherer pr.process_id=tem.p2 を使用する正しい構文については、MySQL サーバーのバージョンに対応するマニュアルを確認してください。

于 2012-05-19T11:24:44.217 に答える