SQLite Forum

Beginner: keep getting ...>
Login
As far as I can see, your example does not contradict my assertion.  I said "[the shell] demands a terminating semicolon", which your example provides.

As it turns out, for non-meta-commands, the shell demands termination by either a semicolon or the word 'go'. For example, modifying your example:

```
sqlite> select
   ...> 1
   ...> ; select
   ...> 2
   ...> go
1
1
2
2
sqlite>
```