Erstellen Sie die Tabelle mit Float DataType in SQL Server

create table order_ (
id int PRIMARY KEY,
number float,
);
Stormy Shark