Hi. Thanks for this nice app.
I've notice a strange situation when running the following query:
```
select
count(*)
from
MovimentoDD
```
it gave me
> 0 rows affected
But table had rows since they where visible while exploring throw the "Edit Top 200 Rows" option. I've found out that the following query works has expected
```
select count(*)
from
MovimentoDD
```
it gave me
> Column1
> 6
It should be the same but it isn't. Notice that there isn't any line break after the select. Also, this query should produce a parsing error but it doesn't:
```
select top 10Montante
from
MovimentoDD
```
where it should be:
```
select top 10 Montante /*With a space between the number and the column name*/
from
MovimentoDD
```
detected on standalone for 4.0 version 3.1.2.0
Thanks
Comments: In 3.6
I've notice a strange situation when running the following query:
```
select
count(*)
from
MovimentoDD
```
it gave me
> 0 rows affected
But table had rows since they where visible while exploring throw the "Edit Top 200 Rows" option. I've found out that the following query works has expected
```
select count(*)
from
MovimentoDD
```
it gave me
> Column1
> 6
It should be the same but it isn't. Notice that there isn't any line break after the select. Also, this query should produce a parsing error but it doesn't:
```
select top 10Montante
from
MovimentoDD
```
where it should be:
```
select top 10 Montante /*With a space between the number and the column name*/
from
MovimentoDD
```
detected on standalone for 4.0 version 3.1.2.0
Thanks
Comments: In 3.6