摘要: A. 使用简单过程以下存储过程将从视图中返回所有雇员(提供姓和名)、职务以及部门名称。此存储过程不使用任何参数。USE AdventureWorks2008R2;GOIF OBJECT_ID ( 'HumanResources.uspGetAllEmployees', 'P' ) IS NOT NULL DROP PROCEDURE HumanResources.uspGetAllEmployees;GOCREATE PROCEDURE HumanResources.uspGetAllEmployeesAS SET NOCOUNT ON; SELECT Last 阅读全文
posted @ 2012-05-23 22:35 沉思program 阅读(233) 评论(0) 推荐(0)