User's Guide
Part II. Tutorials
Chapter 13. Command FilesSQL commands can get quite large. You have already seen how to use the editor to enter commands on several lines. The ISQL environment also allows multiple commands to be entered at the same time. This is done by ending each command with a semi-colon (;).
You may want to grow the Command window:
To enter multiple statement in the ISQL Command Window
UPDATE employeeSET dept_id = 400,manager_id = 1576WHERE emp_id = 467;UPDATE employeeSET dept_id = 400,manager_id = 1576WHERE emp_id = 195;SELECT *FROM employeeWHERE emp_id IN ( 195, 467 )
You can modify the commands if there are errors.