SQL/MX Remote Conversational Interface (RMXCI) Guide for SQL/MX Release 3.1 (H06.23+, J06.12+)

Syntax
GOTO {label}
label
is a string of characters without quotes and spaces, or a quoted string.
Considerations
You must enter the command in one line.
The goto command cannot jump back in the command history; it is a forward only command.
Examples
The following examples show the use of goto and label commands:
SQL> GOTO ViewManagers
SQL> SELECT * FROM Employees; -- skipped
SQL> SHOW RECCOUNT; -- skipped
SQL> LABEL ViewManagers
SQL> SELECT * FROM Managers;
SQL> GOTO View Customers
SQL> SELECT * FROM Invoices; -- skipped
SQL> LABEL View Customers
SQL> SELECT * FROM Customers;
HELP command
The help command displays help text for the supported interface commands.
Syntax
HELP [command-name]
command-name
is the name of an interface command. If you do not specify a command, RMXCI returns a list
of all supported commands. If you specify set, RMXCI returns a list of all set commands. If
you specify show, RMXCI returns a list of all show commands.
Considerations
You must enter the command in one line.
Examples
The following command lists all the commands:
SQL>help
The following command lists all the set commands:
SQL>help set
The following command shows help text for set idletimeout:
SQL>help set idletimeout
HISTORY command
The history command displays the recently run commands, identifying each command by a
number that you can use to rerun or edit the command.
68 RMXCI commands