sql入門教程:SQL ROUND() 實例教程
round ( )函數
round ( )函數是用來一輪數字領域的一些具體小數。
數據庫round ( )語法
SELECT ROUND(column_name,decimals) FROM table_name
好下面我們來看看數據結構
Parameter Description column_nameRequired. The field to round.decimalsRequired. Specifies the number of decimals to be returned.
實例教程.
Id ProductName Unit UnitPrice 1Jarlsberg1000 g10.452Mascarpone1000 g32.563Gorgonzola1000 g15.67
現在,我們要顯示產品名稱和價格四捨五入至最接近的整數。
我們使用下面的SELECT語句:SELECT ProductName, ROUND(UnitPrice,0) as UnitPrice FROM Persons輸出結果.ProductName UnitPrice Jarlsberg10Mascarpone33Gorgonzola16