私はWindows azureが初めてです。私を助けてください。
このクエリの書き方:
"SELECT catchup.*,news.text from catchup,news where news.deviceID = catchup.deviceID AND news.name = '$name' ORDER BY id DESC";
このフォーマットを使って書きました
mssql.query('SELECT t.text, t.complete, p.description FROM ToDoItem as t INNER JOIN Priority as p ON t.priority = p.number', {
success: function(results) {
console.log(results);
},
error: function(err) {
console.log("error is: " + err);
});
しかし、エラーコード500が表示されます。また、パラメーターを渡す方法。