문제

Hello I want to make a select statement in openedge procedure eduitor

and as I'm so so new to Propgress and everything is so strange to me having in mind that I have only wirked with MSSQL and . SO Suppose I have an articlegroup table

  1. First how to see all records from all the fields of this table - Select * from articlegroup
  2. Then how to add a where clause
도움이 되었습니까?

해결책

Welcome to the wonderfully different world of OpenEdge :)

FOR EACH articlegroup Where whereClauseGoeshere:
    /*do what you want with the record buffer*/
    DISPLAY articlegroup.
END.

here is a place for you to start with: http://documentation.progress.com/output/OpenEdge102b/pdfs/gsabl/gsabl.pdf

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top