sql command for modify a column to have 2 digits after decimal point -
what sql command modify column have 2 digits after decimal point? not casting when display.
you want decimal
data type. each database has own documentation this.
the declaration decimal(8, 2)
, instance. need specify both scale , precision.
Comments
Post a Comment