StoredProc.sql
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:0k
源码类别:

C#编程

开发平台:

Others

  1. --
  2. -- Procedure to select all rows from the Region table
  3. --
  4. CREATE PROCEDURE RegionSelect AS
  5.   SET NOCOUNT OFF;
  6.   SELECT * FROM Region ;
  7. GO