日期:2014-05-18 浏览次数:20698 次
INSERT INTO student_Info(stu_ID,stu_Year) VALUES(001,3)
create table tb(stu_ID varchar(8),stu_Year smallint) go insert into tb values('001',3) INSERT INTO tb VALUES(001,3) select * from tb drop table tb /* stu_ID stu_Year -------- -------- 001 3 1 3 (所影响的行数为 2 行) */