假设我的商店中有 3 个条目
{
category: "Science",
author: "Charles Darwin",
content: "Lorem ipsum dolor..."
}
{
category: "Science",
author: "Albert Einstein",
content: "sit amet..."
}
{
category: "Philosophy",
author: "Albert Einstein",
content: "consectetur adipisicing elit..."
}
"where category = 'Science'"
是否可以在不创建类别索引的情况下获取所有条目?- 是否有可能获得所有条目
"where category = 'Science' AND author = 'Albert Einstein'"
? - 是否可以获得包含单词
"Lorem"
是内容字段的所有条目? - 或者我应该为这些类型的查询使用不同的数据库