Using SQL reserved keywords in MongoDB SQL
Suppose I have a collection named 'group'. Currently, I am unable to execute a SQL query on this collection as this is a reserved keyword in SQL and, though, manipulations like using ['group'] in SQL query don't throw any error, no result is fetched either
1
vote
Anonymous
shared this idea
Hi, we’ve created a ticket for this.
Meanwhile, we can help you to continue your work.
for that particular case, the following sql query should work:
select *
from [group];