Entering statements

The statements that you enter in isql can span several lines. isql does not process statements until you type “go” on a separate line. For example:

1> select *
2> from sysobjects
3> where type = "TR"
4> go

The examples in this manual do not include the go command between statements. If you are typing the examples, you must enter the go command to see the sample output.