sql round 函式介紹

2021-06-19 01:16:25 字數 622 閱讀 2315

round 函式用於把數值字段捨入為指定的小數字數。

select round(column_name,decimals) from table_name
引數

描述column_name

必需。要捨入的字段。

decimals

必需。規定要返回的小數字數。

我們擁有下面這個 "products" 表:

prod_id

productname

unit

unitprice

1gold

1000 g

32.35

2silver

1000 g

11.56

3copper

1000 g

6.85

現在,我們希望把名稱和**捨入為最接近的整數。

我們使用如下 sql 語句:

select productname, round(unitprice,0) as unitprice from products
結果集類似這樣:

productname

unitprice

gold

32silver

12copper

函式介紹 初識函式(定義,呼叫,引數介紹)

函式就是盛放 的容器,把實現某一功能的一組 丟到乙個函式中,就做成了乙個小工具。具備某一功能的工具就是函式。事先準備工具的過程就是函式的定義。遇到應用場景拿來就用就是函式的呼叫沒用函式之前面臨的問題 1 冗餘,程式組織結構不清晰 可讀性差 2 擴充套件性差def 函式名 引數1,引數2,引數3.文件...

部分函式介紹()

void cvcanny const cvarr image,cvarr edges,double threshold1,double threshold2,int aperture size 3 函式功能 函式 cvcanny 採用 canny 演算法發現輸入影象的邊緣而且在輸出影象中標識這些邊緣...

assert 函式介紹

assert 斷言 可以有兩種形式 assert expression1 assert expression1 expression2 expression1 應該總是產生乙個布林值。expression2 可以是得出乙個值的任意表示式。這個值用於生成顯示更多除錯資訊的 string 訊息。斷言在預...