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