8. OpenSQL Statements : Help : Examples: Help
 
Share this page                  
Examples: Help
1. Retrieve a list of all tables, views, and indexes in the database.
  help;
2. Retrieve help about the employee table.
  help employee;
3. Retrieve help about the employee and dept tables.
  help employee, dept;
4. Retrieve the definition of the view highpay.
  help view highpay;
5. List information on the select statement.
  help select;