在JPQL顺序中取消布尔值

时间:2017-08-10 07:20:24

标签: sql boolean sql-order-by jpql

我有一个像

这样的实体
$(document).ready(function() {
  $("#dialog_form_file").dialog({
    modal: true,
    autoOpen: false,
    title: "Help",
    width: 450,
    buttons: [{
        text: "OK",
        click: function() {
          $(this).dialog("close");
        }
      },
      {
        text: "Cancel",
        click: function() {
          $(this).dialog("close");
        }
      }
    ]
  });
  $("#dialog_form").dialog({
    modal: true,
    autoOpen: false,
    title: "Help",
    width: 450,
    buttons: [{
        text: "OK",
        click: function() {
          $(this).dialog("close");
        }
      },
      {
        text: "Cancel",
        click: function() {
          $(this).dialog("close");
        }
      }
    ]
  });
  $("#dialog_help").click(function() {
    $("#dialog_form_file").dialog('open');
  });
  $("#change_button").click(function() {
    $("#dialog_form").dialog('open');
  });
});

我想根据活跃和排名选择,并希望活跃的学生首先按顺序排列。

在Postgres SQL中,我可以编写如下查询:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<link href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet"/>
<div id="dialog_form_file" style="display: none">
  <p>Hello</p>
</div>
<div id="dialog_form" style="display: none">
  <p>Hello</p>
</div>

在JPQL中有没有相同的写法?

0 个答案:

没有答案