我已经看过如何在azure表中进行简单查询的示例,其中列等于某个值,但现在我需要做一个“select where firstname like%abc”的等价物。
有人知道怎么做吗?
答案 0 :(得分:0)
我找到了答案。要实现此目的,您需要创建一个新的api,并使用类似于此
的代码exports.get = function(request, response) {
var id = request.query.id;
request.service.mssql.query(
'select * from Users where name Like ?',["%test%"], {
success: function(results) {
response.send(200, results);
}
});
};