SQL语句插入 smallint 类型的数据
我试了一下..
关于smallint类型的值只要输入1位 却插不到表中.让我很纠结..
INSERT INTO student_Info(stu_ID,stu_Year) VALUES(001,3)
create table tb(stu_ID varchar(8),stu_Year smallint)goinsert into tb values('001',3)INSERT INTO tb VALUES(001,3)select * from tbdrop table tb/*stu_ID stu_Year -------- -------- 001 31 3(所影响的行数为 2 行)*/