将SQL查询转换为Android Azure移动服务查询 - DISTINCT语句

时间:2017-04-01 10:15:28

标签: java android azure azure-mobile-services

SQL语句:

a = b

进入Azure移动服务

b = a + b

问题是选择DISTINCT列。这是在Android上。

1 个答案:

答案 0 :(得分:1)

听起来您想使用Android客户端SDK for Azure Mobile Apps编写用于查询DISTINCT列的代码,但是没有任何方法可以通过Android客户端上的Query界面直接支持它SDK。

唯一的方法是来自android客户端的calling a custom API在后端服务器上执行自定义SQL语句,请参阅文档部分Custom APIs的第How to: Execute custom SQL statements小节和data/execute Node.js后端的方法。