Q&A

  • mysql에서 테이블 조인시 검색 및 색인이 되지를 않습니다.
<!--CodeS-->
    select_sql := 'select '+shop_board+'.*,'+cat_board+'.* from ';
    select_sql := select_sql + shop_board+' INNER JOIN '+cat_board+' ON '+cat_board+'.no = '+shop_board+'.category  ';
    temp_sql := '';
    with db_main.Shop_Show do
    begin
        if active then close;
        sql.clear;
        sql.add(select_sql);
        if where_sql <> '' then SQL.Add('Where '+where_sql);
        if index_sql <> '' then SQL.Add('Order by '+index_sql);
        open;
    end;
<!--CodeE-->

위의 소스중 shop_board 테이블의 필드는 정상적으로 검색 및 색인이 되는데 cat_board 의 필드 내용은 검색 및 색인이 되지를 않습니다.

0  COMMENTS