I suggest you read the SQL - SELECT command help. Though the command reads few in numbers, it is extremely powerful to extract data from the tables and group them or order them to your needed choice. You can get the resultant data filtered to your choice. You can also extract it to temporary cursors on the fly and make use of the resultant cursor as tables.
You can also see the topic views .
The easiest way to proceed.. is..
SELECT * FROM myTable
SELECT myField1, myField2 FROM myTable ORDER by myField1 .. etc.. commands.
You can see the resultant records drwan shown on the screen as a cursor.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.