Q&A

  • Query1 : Field ' mast_item ' not found
[Query1 : Field ' mast_item ' not found]라는 에러가 발생합니다

그 이유좀 알카줘유...



select max(a.mast_item), max(a.mast_name), max(a.mast_spec),

sum(b.lstk_stok)

from dimast a, dilstk b

where (a.mast_item = b.lstk_item)

and (b.lstk_stok > 0)

group by a.mast_item, a.mast_name,a.mast_spec



1  COMMENTS
  • Profile
    cell 2001.06.13 19:21
    XXX wrote:

    > [Query1 : Field ' mast_item ' not found]라는 에러가 발생합니다

    > 그 이유좀 알카줘유...

    >

    > select max(a.mast_item), max(a.mast_name), max(a.mast_spec),

    > sum(b.lstk_stok)

    > from dimast a, dilstk b

    > where (a.mast_item = b.lstk_item)

    > and (b.lstk_stok > 0)

    > group by a.mast_item, a.mast_name,a.mast_spec

    >



    opne에서 에서가 발생했다면 정말로 필드가 없는 것이고

    만약 그리드에 뿌려주는 fieldbyname('필드').Asstirng과같이...

    에서 에러가 난다면 max(a.mast_item) as mast_itm과 같이 sql을 변경하면 됩니다.

    위의 sql은 전혀 이상이 없는거 같은데요.