当我试图在SQL中创建一个字段类型DOUBLE时,我总是遇到同样的错误


create table test(isaNumber DOUBLE)

"("附近的语法不正确。

但如果我键入create table test(isaNumber INT),则不会出现错误

doublesqlserver中不是有效的数据类型,请改用float。参见

数据类型列表

在sql server中。

create table test7(isaNumber float)

最新更新