Home page  
Help >
DDL Most Common Problem
Version 7.11
DDL Most Common Problem

The Most Common Problem Encountered by First-Time Users

The thing to remember is that a reference to "A" is different from a reference to "A TABLENAME". One is global, the other specific.

So if you SORT A you should REPORT A, and if you SORT A CUSTOMERS you should REPORT A CUSTOMERS.

An incorrect command sequence would be:

                sort a by cust#
                print a customers cust# name street city state zip

The report would appear unsorted because it was not A CUSTOMERS that was sorted, it was A.

Another incorrect command sequence:

                sort a customers by cust#
                print a cust# name street city state zip

The report would appear unsorted because it was not A that was sorted, it was A CUSTOMERS.

Copyright © 2019 , WhamTech, Inc.  All rights reserved. This document is provided for information purposes only and the contents hereof are subject to change without notice. Names may be trademarks of their respective owners.