--創建表
create table Tom ( Id int identity(1,1) primary key, --主鍵,自增1, Name nvarchar(128), Weight decimal(4,2), --decimal類型,總共4位,保存兩位小數,非小數最大99 MyBigIntColumn bigint )
2.小數點只保留兩位
4.decimal的精度問題
https://docs.microsoft.com/zh-cn/sql/t-sql/data-types/decimal-and-numeric-transact-sql?view=sql-server-ver15