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.
我很想在 MongoDB 或 MySQL 中存储查询(有时我可能不知道它们)。
在 MySQL 中,我相信我必须将查询存储为文本,例如,我如何从 MySQL 检索该查询并能够运行它?
$collection->findOne( array('email' => $user_data['email']) );
我也在考虑使用 MongoDB,如果有更有效的方式来存储查询。