这是我在网上看到新建表的SQL语句但是怎么和SQL上的属性不对应我不懂
新建表: 
create table [表名] 

[自动编号字段] int IDENTITY (1,1) PRIMARY KEY , 
[字段1] nVarChar(50) default '默认值' null , 
[字段2] ntext null , 
[字段3] datetime, 
[字段4] money null , 
[字段5] int default 0, 
[字段6] Decimal (12,4) default 0, 
[字段7] image null , 
)
我会的SQL属性是:datetime,nVarChar(50),int ,bit,float,ntext ,,请兄弟给翻译下