N1QL - select from subquery

Try this one:

SELECT a.* FROM
(SELECT "test" as fake
FROM default) a
2 Likes