Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
db.courses.find({"course_number": "/ ^ AFPRL /"})は何も返しません。
以下は私のDBエントリです。私はMongoDBを初めて使用するので、ご容赦ください。MySQLでLIKE操作と同等の操作を実行しようとしていると思いますか?
{ _id: ObjectId("51072be2f046ed1c0e000000"), course_number: "AFPRL 100.00", room: "HW 215", }
正規表現は文字列ではありません。そのはず
db.courses.find({"course_number": /^AFPRL/})