Buat Tabel dengan DataType Float di SQL Server

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