this code select "answer" column from "default" database and "enriched-responses-dev" table and named it as "virtual_table" then from this table select "answer" column and named it as answer (and in fact if you don't use this part the result is same as when you are using this part) and this selection limited to last 1000 row
SELECT answer AS answer
FROM
(SELECT answer
FROM "default"."enriched-responses-dev") AS virtual_table
LIMIT 1000;
but this code:
SELECT answer AS answer
FROM "default"."enriched-responses-dev"
LIMIT 1000;
just select answer column from "enriched-responses-dev" this table from this "default" database and limit it to 1000 last rows