以小数形式查找刻度的MaxNonZeroPosition

时间:2018-01-30 09:18:09

标签: sql-server

我有一个场景,其中我需要一个SQL查询,以使用SQL Server以数据库的每个十进制列的比例找出MaxNonZeroPosition。 例如:43321.70090100,此处最大非零位置为6。

2 个答案:

答案 0 :(得分:3)

为了降低复杂性,我参与了一个子查询。这应该可以满足您的需求:

let element = document.getElementById("box");

element.scrollIntoView();
element.scrollIntoView(false);
element.scrollIntoView({block: "end"});
element.scrollIntoView({behavior: "instant", block: "end", inline: "nearest"});

答案 1 :(得分:1)

另一种方法

public class Child implements Serializable {
   @EmbeddedId
   private UniqueKey key;

   @Column(name = "name")
   private String name;
}