首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

bit类型的插入,该怎么解决

2012-02-26 
bit类型的插入insertintostudent(studentcard,sname,sgrade,sspecialtyID,isValid)values( 1 , test_sname

bit类型的插入
insert  
into   student   (studentcard,sname,sgrade,sspecialtyID,isValid)
values   ( '1 ', 'test_sname ', '2005 ', '2 ',convert(bit,0))

isValid   是bit类型
错误提示:
消息   8152,级别   16,状态   4,第   1   行
将截断字符串或二进制数据。
语句已终止。


[解决办法]
:)
[解决办法]
可以直接

insert
into student (studentcard,sname,sgrade,sspecialtyID,isValid)
values ( '1 ', 'test_sname ', '2005 ', '2 ',0)
[解决办法]
呵呵,直接写0或1就成了啊

热点排行