Oracle уникальное ограничение и уникальный индекс

function ajaxTest() {
    $.ajax({
        type: "POST",
        url: "doAJAX",
        dataType: "html",
        data:{
               "selectedScope": "5",
               "selectedView": "6"
         },
        success: function(responseData) {
            $("#replaceThis").append(responseData);
        }
    });
}
38
задан Ahmed Ashour 19 February 2018 в 13:29
поделиться