Why is the following query a valid select ?
SELECT * from arelation somerandomtext;
The content of arelation
does not matter, it just hast to be an existing view/table.
It returns the correct result, respectively the output of the select without the somerandomtext
.
Why does this query do not throw an error/exception, is there no keyword (Group By, limit...) check ?