Q&A

  • Sub Query에서 다중열 비교는 어떻게 하는지 알고싶어요???
안녕하세요 수고 많습니다.
제 생각으로는 맞는것 같은데 에러가 발생 합니다.
델파이 4.0, MS-SQL 7.0 을 사용하고 있습니다.

with QFacOrder4 do
begin
Close;
Sql.Clear;
Sql.Add('Select  * From StoNow where (Matr_Code, Matr_Size) in  ');

이부분에서 (Matr_Code, Matr_Size) in
{에러 내용 : InCorrect syntax Near ','}

Sql.Add('(select Matr_Code, Matr_Size From Matr_Code where      ');
Sql.Add('Sup-Comp in (:p1))                                                      ');
Sql.Add('Order By Matr_Code, Matr_Size                                     ');
ParamByName('p1').asstring:=Edit1.text;
Open;

이것 말고 다르게 다중열 비교 하는 방법이 있는지 알고 싶습니다.
많은 답변을 부탁 드립니다.
감사 합니다.
0  COMMENTS