摘要:
添加约束、增删改 1 use StudentDB2 2 go 3 创建学生表 4 create table StudentInfo( 5 --studentId int primary key not null identity(1,1), 设置为主键,并自增长 6 studentId int no 阅读全文
摘要:
一、新建一个类,用来存放属性和方法( 属性和方法写在同一个类中)。 先新建一个类: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System 阅读全文
摘要:
一、创建带有输出参数的分页存储过程 1 use StudentMISDB 2 go 3 select * from Course 4 alter table Course 5 add IsDelete int not null default 0 6 go 7 select * from Cours 阅读全文