私はこのprocを書いています
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' が必要です。
私はconvertを試しましたが、正しく書きません