我已经写了这个过程
alter proc vencedata (@inicio smalldatetime)as
select idconta,vencimento,pagamento,historico,original,formpagto,planoconta,clifor
from financeiro where vencimento >= @inicio
vencimento(smalldatetime) 列的格式为 mm/dd/yyyy proc 以这种格式工作
vencedata '03/28/2013' (mm/dd/yyyy)
但是@inicio 的日期在 dd/mm/yyyy 我需要 proc 工作 vencedata '28/03/2013'
我尝试过转换,但我写得不对,谢谢任何方向