如何使用MongoDB在NodeJS中编写以下MySQL Select?

时间:2015-11-18 13:16:53

标签: mysql node.js mongodb

我想要的:

<TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="30dp"
        android:paddingTop="10dp"
        android:paddingBottom="10dp"
        android:textSize="15dp"
        android:gravity="center"
        android:layout_gravity="center"
        android:textStyle="bold"
        android:onClick="shopByCategory"
        android:text="Shop By Category"/>

:ipAddress和filename来自http ...感谢您的帮助

the db

我想要使用的地方:

SELECT MAX(pieces) //(to a var variable)
FROM record
WHERE ip = :ipAddress AND filename_full = :filename

1 个答案:

答案 0 :(得分:1)

您可以使用 Mongoose ,它可以帮助您更轻松地使用MongoDB。

Record.findOne({
    ip: ipAdress,
    filename_full: filename
}).sort({
    'pieces': -1
}).exec(function(err, doc) {

});

参考:Mongoose docGet max value in mongoose