摘要:
一.创建表、修改表与删除表 1.1代码1.创建表:create table Person5(Id int not null,Name nvarchar(50),Age int null)2.修改表:alter table T_Employee add FSubCompany varchar(20); --表中添加分公司alter table T_Employee add FDepartment varchar(20); --表中添加部门3.删除表:drop table person4;1.2分析 1)create实现在代码中直接生成表,表的字段可以再表名(Person5)后面逐一定... 阅读全文
摘要:
_Layout.cshtml 主母版<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content-Type" content="text 阅读全文