我有三個參數@code
是table1.column1
任何元件,@date
是元件table2.column2
的日期和@total
將是示出了出現在元件table2.column2
時代的輸出參數。執行輸出參數SQL服務器
我想執行一個程序,顯示table1.column1
和table2.column1
與date_column
之間的內部連接;只有在參數@date
之前的日期。
而且還@total
create procedure pro1
@code int,
@date datetime,
@total smallint OUTPUT
as
select
table1.column1, table2.date_column
from
table1
inner join
table2 on table1.column1 = table2.column2
where
table1.column1 = @code
and table2.date_column = @date
and @date <= table2.date_column
您說「行數之和」 - 你能澄清嗎?你的意思是「(某些列的總和)」或「行數」? – 2014-09-21 15:17:30