できる最善のことは、サーバーにAJAXリクエストを発行してから、サーバー側のコードを使用してこのクエリを実行することです。
jQuery.post()を使用できます この場合。
編集
AJAXの概要を知るには、これを読んでください。
これを読む jQueryのAJAXメソッドの概要を取得します。
SQLコマンドを実行するサーバー側ロジックをページに記述します。次に、AJAXを使用してそのページにリクエストを発行します。
サンプルコード
$(function(){
// Bind a click event to your anchor with id `updateSal`
$("#updateSal").click(function(){
// get your employeeID
var empID = "32";
// issue an AJAX request with HTTP post to your server side page.
//Here I used an aspx page in which the update login is written
$.post("test.aspx", { EmpID: empID},
function(data){
// callack function gets executed
alert("Return data" + data);
});
// to prevent the default action
return false;
});
});