Frage

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
War es hilfreich?

Lösung

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

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top