在sql Server中如何写一个存储过程存储来获取表emp

2025-03-23 20:11:15
推荐回答(1个)
回答1:

Create PROC p_GetEMp

AS
BEGIN
select * from Emp
END