在此表中:
Total Data
-----------------------------
1 2013-07-10 16:37:29.573
1,5 2013-07-10 16:38:29.573
0,75 2013-07-10 16:39:29.573
1,99 2013-07-10 16:40:29.573
我一直在写这个 ms-sql 程序:
ALTER proc [dbo].[empcx](@caixa int,@inicio datetime)as
select sum(total) ttotal from alteraca
where (DATA >= @inicio AND DATA <= @inicio) and caixa=@caixa and pedido <>0
但我这样称呼我:
empcx 6 , '11/07/2013'
并且只返回 null ,需要演员什么的???我要用这个参数在 C# 中调用这个过程
label4.Text = dateTimePicker1.Value.ToShortDateString();