我是 MongoDB 的新手。我无法创建集合。它在 mongo shell 中给出了一个句子 - Display all 169 possibilities? (y or n)
。代码是 -
db.Lead.insert(
{ LeadID: 1,
MasterAccountID: 100,
LeadName: 'Sarah',
LeadEmailID : 'sarah@hmail.com',
LeadPhoneNumber : '2132155445',
Details : [{ StateID: 1,
TaskID : 1,
Assigned By : 1001,
TimeStamp : '10:00:00',
StatusID : 1 }
]
}
)
不确定是什么问题。请帮助我。
问候。