Crie a tabela com o Float Datatype no SQL Server

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