서브쿼리를 하는데요..직접 서버로 들어가면 데이타가 있는데 이렇게 코딩해서
하면 데이타가 없네요..
왜그러는지 모르겠네요..
Sql.Add('and eh.event_dest = '''+'101'+'''and eh.event_type = '''+'1'+''' and eh.event_rdtype = '''+'1'+'''');
이 부분을 빼면 데이타가 나옵니다..
그런데 이부분을 집어넣으면 데이타가 분명히 있는데 없네요.
이유를 모르겠네요 답변 부탁드립니다.
Sql.Add('select a.subst');
Sql.Add('from (select subst_name as subst,count(subst_name) as co');
Sql.Add('from event_history eh, setup_zone_tbl szt, code_tbl ct');
Sql.Add('where eh.event_zonecd = szt.zone_cd');
Sql.Add('and eh.event_setupzone = szt.subst_cd and eh.event_dest = ct.small_cd');
Sql.Add('and eh.event_dest = '''+'101'+'''and eh.event_type = '''+'1'+''' and eh.event_rdtype = '''+'1'+'''');
Sql.Add('group by subst_name) as a');