【C#/資料庫】 預存程序寫法

基礎

Create Procedure dbo.預存程序名稱
as
begin
SELECT
你要select的欄位        
FROM   A表 inner join  B表
ON  A表.ID= B表.ID
end