2021-09-23
MVC框架的小例子`
这里主要做个保存,参考了网上的代码
先搭建项目环境,新建一个Spring web项目
在数据库中创建一个学生表
if exists (select * from sysdatabases where name='Test') drop database Test
--建数据库
go
create database Test
go
use Test
if exists (select * from sysobjects where name='students') drop tab




