日期:2014-05-18 浏览次数:20580 次
create table flowerInfo( fid int identity not null , fNum varchar(30) not null, fPicNum int null, fName text not null, fInfo text null, fUsers text null, fPrice money not null, fOther text null ) drop table flowerInfo
------解决方案--------------------
fPicNum int(50) null,
int类型不能指定宽度
------解决方案--------------------
fPicNum int null,
这么写
------解决方案--------------------
在 sql2005好像要用nvarchar吧,varchar好像不是内嵌类型吧。
------解决方案--------------------
fPicNum int(50) null????
int后面不需要指定列宽啊