摘要:
在SQL-Server数据库下,新建两个不同的数据库名字,然后在数据库下创建两个相同结构的表(建议使用SQL语句),比如:在soutest数据库下写入以下语句: 1 create table Employee1 2 ( 3 EmployeeID int primary key , 4 EmployeeName varchar(20) not null, 5 EmployeeAge smallint not null, 6 EmployeeSex char(2) default'女', 7 EmployeeCellPhone int not null, 8 ... 阅读全文